blob: 6c79228df6226bbaca7c631ed29501ae13af7f8a (
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
|
.. SPDX-License-Identifier: CC-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;
}
}
|