correct links and add infos
[externalapi/nbi.git] / docs / delivery / delivery.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. http://creativecommons.org/licenses/by/4.0
3 .. Copyright 2018 ORANGE
4
5
6 Delivery
7 ========
8
9 NBI Dockers Containers Structure
10 ================================
11
12 Below is a diagram of the ExternalAPI/NBI project docker containers and the connections between them.
13
14 .. blockdiag::
15
16
17     blockdiag delivery {
18         node_width = 170;
19         orientation = portrait;
20         MongoDB[shape = flowchart.database]
21         MariaDB[shape = flowchart.database]
22         NBI -> MongoDB, MariaDB;
23         group bi_group {
24             color = yellow;
25             label = "Business Layer"
26             NBI;
27         }
28         group data_storage_group {
29             color = orange;
30             label = "Data Storage Layer"
31             MongoDB; MariaDB;
32         }
33     }
34