General arrangement for Read the Docs
[sdc.git] / docs / 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
4 ========
5 Delivery
6 ========
7    
8 SDC Dockers Containers Structure
9 ================================
10
11 Below is a diagram of the SDC project docker containers and the connections between them.
12
13 .. blockdiag::
14    
15
16     blockdiag delivery {
17         node_width = 170;
18         orientation = portrait;
19         SDC-Elasticsearch[shape = flowchart.database]
20         SDC-Cassandra[shape = flowchart.database]
21         SDC-Frontend -> SDC-Backend;
22         SDC-Backend -> SDC-Elasticsearch, SDC-Cassandra;
23         SDC-Sanity -> SDC-Backend;
24         group ui_group {
25             color = blue;
26             label = "UI Layer";
27             SDC-Frontend;
28         }
29         group bi_group {
30             color = yellow;
31             label = "Business Login Layer"
32             SDC-Backend;
33         }
34         group data_storage_group {
35             color = orange;
36             label = "Data Storage Layer"
37             SDC-Elasticsearch; SDC-Cassandra;
38         }
39         group testing_group {
40             color = green;
41             label = "Testing Layer";
42             SDC-Sanity;
43         }
44     }