Add cdt proxy port to match oom
[appc/deployment.git] / docker-compose / docker-compose.yml
1 # ============LICENSE_START==========================================
2 # ONAP : APPC
3 # ===================================================================
4 # Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
5 # ===================================================================
6 #
7 # Unless otherwise specified, all software contained herein is licensed
8 # under the Apache License, Version 2.0 (the License);
9 # you may not use this software except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #    http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 #
20 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
21 # ============LICENSE_END============================================
22 version: '2'
23
24 networks:
25   default:
26     driver: bridge
27
28 services:
29   db:
30     image: mysql/mysql-server:5.6
31     container_name: sdnc_db_container
32     ports:
33       - "3306"
34     environment:
35       - MYSQL_ROOT_PASSWORD=openECOMP1.0
36       - MYSQL_ROOT_HOST=%
37     logging:
38       driver: "json-file"
39       options:  
40         max-size: "30m"
41         max-file: "5"
42
43 # Tweaking SDNC_CONFIG_DIR temporarily from ../sdnc/.. to ../appc/.. since it may be needed in this script
44 #    to map to SDN-C AAI Service Bundle's AAI Activator class inside the gerrit sdnc/adaptors repo, so that
45 #    the AAI Service bundle loads APP-C's aaiclient.properties instead of SDN-C's aaiclient.properties.
46   appc:
47     image: "onap/appc-image:latest"
48     depends_on :
49       - db
50     container_name: appc_controller_container
51     entrypoint: ["/opt/onap/appc/bin/startODL.sh"]
52     ports:
53       - "8282:8181"
54       - "1830:1830"
55       - "9090:9191"
56       - "30290:9191"
57     links:
58       - db:dbhost
59       - db:sdnctldb01
60       - db:sdnctldb02
61     environment:
62       - MYSQL_ROOT_PASSWORD=openECOMP1.0
63       - SDNC_CONFIG_DIR=/opt/onap/appc/data/properties
64       - APPC_CONFIG_DIR=/opt/onap/appc/data/properties
65       - DMAAP_TOPIC_ENV=SUCCESS
66     logging:
67       driver: "json-file"
68       options:
69         max-size: "30m"
70         max-file: "5"
71
72
73   dgbuilder:
74     image: "onap/ccsdk-dgbuilder-image:latest"
75     depends_on:
76       - db
77     container_name: ccsdk_dgbuilder_container
78     entrypoint:
79        - "/bin/bash"
80        - "-c"
81        - "cd /opt/onap/ccsdk/dgbuilder/ && ./start.sh sdnc1.0 && wait"
82     ports:
83       - "3000:3100"
84     links:
85       - db:dbhost
86       - db:sdnctldb01
87       - db:sdnctldb02
88       - appc:sdnhost
89     environment:
90       - MYSQL_ROOT_PASSWORD=openECOMP1.0
91       - SDNC_CONFIG_DIR=/opt/onap/ccsdk/data/properties
92     logging:
93       driver: "json-file"
94       options:
95         max-size: "30m"
96         max-file: "5"
97
98   cdt:
99     image: "onap/appc-cdt-image:latest"
100     depends_on:
101       - db
102     container_name: appc_cdt_container
103     entrypoint:
104        - "/bin/bash"
105        - "-c"
106        - "cd /usr/local/apache2/ && /usr/local/apache2/bin/httpd -D FOREGROUND && wait"
107     ports:
108       - "8080:80"
109     links:
110       - appc:sdnhost
111     environment:
112       - MYSQL_ROOT_PASSWORD=openECOMP1.0
113     logging:
114       driver: "json-file"
115       options:
116         max-size: "30m"
117         max-file: "5"
118