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