Merge "Invalid SO payload"
[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 ********************************
10 NBI Dockers Containers Structure
11 ********************************
12
13 Below is a diagram of the ExternalAPI/NBI project docker containers and the connections between them.
14
15 .. blockdiag::
16
17
18     blockdiag delivery {
19         node_width = 170;
20         orientation = portrait;
21         MongoDB[shape = flowchart.database]
22         MariaDB[shape = flowchart.database]
23         NBI -> MongoDB, MariaDB;
24         group bi_group {
25             color = yellow;
26             label = "Business Layer"
27             NBI;
28         }
29         group data_storage_group {
30             color = orange;
31             label = "Data Storage Layer"
32             MongoDB; MariaDB;
33         }
34     }
35