blob: 1263f545226ece0fe5b7e2d3b68edb747d751b07 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
version: '2'
services:
db:
image: mysql/mysql-server:5.6
container_name: sdnc_db_container
ports:
- "3306"
environment:
- MYSQL_ROOT_PASSWORD=openECOMP1.0
- MYSQL_ROOT_HOST=%
logging:
driver: "json-file"
options:
max-size: "30m"
max-file: "5"
appc:
image: ecomp-nexus:51212/ecomp/appc-image:latest
depends_on :
- db
container_name: appc_controller_container
entrypoint: ["/opt/openecomp/appc/bin/startODL.sh"]
ports:
- "8282:8181"
- "1830:1830"
links:
- db:dbhost
- db:sdnctldb01
- db:sdnctldb02
environment:
- MYSQL_ROOT_PASSWORD=openECOMP1.0
- SDNC_CONFIG_DIR=/opt/openecomp/sdnc/data/properties
- APPC_CONFIG_DIR=/opt/openecomp/appc/data/properties
- DMAAP_TOPIC_ENV=SUCCESS
logging:
driver: "json-file"
options:
max-size: "30m"
max-file: "5"
dgbuilder:
image: ecomp-nexus:51212/ecomp/dgbuilder-sdnc-image:latest
depends_on:
- db
container_name: sdnc_dgbuilder_container
entrypoint:
- "/bin/bash"
- "-c"
- "cd /opt/openecomp/sdnc/dgbuilder/ && ./start sdnc1.0 && wait"
ports:
- "3000:3100"
links:
- db:dbhost
- db:sdnctldb01
- db:sdnctldb02
- appc:sdnhost
environment:
- MYSQL_ROOT_PASSWORD=openECOMP1.0
- SDNC_CONFIG_DIR=/opt/openecomp/sdnc/data/properties
- APPC_CONFIG_DIR=/opt/openecomp/appc/data/properties
logging:
driver: "json-file"
options:
max-size: "30m"
max-file: "5"
|