Chore: Fix typo in INFO
[externalapi/nbi.git] / docs / delivery / delivery.rst
1 .. SPDX-License-Identifier: CC-BY-4.0
2 .. Copyright 2018 ORANGE
3
4
5 Delivery
6 ========
7
8 ********************************
9 NBI Dockers Containers Structure
10 ********************************
11
12 Below is a diagram of the ExternalAPI/NBI project docker containers and the
13 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     }