Add docker-compose.yml 77/10377/1
authorDan Timoney <dtimoney@att.com>
Tue, 5 Sep 2017 16:37:04 +0000 (12:37 -0400)
committerDan Timoney <dtimoney@att.com>
Tue, 5 Sep 2017 16:37:13 +0000 (12:37 -0400)
Add docker-compose.yml to bring up CCSDK docker containers for
troubleshooting purposes.

Change-Id: Ic0393621d568b52a06d3cdf958ae60dc10afbaca
Issue-ID: CCSDK-76
Signed-off-by: Dan Timoney <dtimoney@att.com>
src/main/yaml/README.md [new file with mode: 0644]
src/main/yaml/docker-compose.yml [new file with mode: 0644]

diff --git a/src/main/yaml/README.md b/src/main/yaml/README.md
new file mode 100644 (file)
index 0000000..6e536a6
--- /dev/null
@@ -0,0 +1,10 @@
+This directory contains a docker-compose.yml that is intended for
+use by CCSDK developers to test and debug issues with the CCSDK
+docker containers.
+
+Please note that these containers are NOT intended to be used as standalone
+containers, with interface to other ONAP components. Rather, they are intended
+to be used as bases for other containers (e.g. odlsli is the container
+that SDN-C and APP-C would base their controller containers on), or as 
+development environments (e.g. the dgbuilder container is a development
+tool for editing directed graphs)
diff --git a/src/main/yaml/docker-compose.yml b/src/main/yaml/docker-compose.yml
new file mode 100644 (file)
index 0000000..ba1b87e
--- /dev/null
@@ -0,0 +1,80 @@
+version: '2'
+
+services:
+  db:
+    image: mysql/mysql-server:5.6
+    container_name: ccsdk_db_container
+    ports:
+      - "3306"
+    environment:
+      - MYSQL_ROOT_PASSWORD=openECOMP1.0
+      - MYSQL_ROOT_HOST=%
+    logging:       
+      driver:   "json-file"
+      options:  
+        max-size: "30m"
+        max-file: "5"
+  
+      
+  bareodl:
+    image: ${NEXUS_DOCKER_REPO}/onap/ccsdk-odl-image:0.1-STAGING-latest
+    container_name: ccsdk_bareodl_container
+    entrypoint: ["/opt/opendaylight/current/bin/karaf"]
+    ports:
+      - "18181:8181"
+    environment:
+      - MYSQL_ROOT_PASSWORD=openECOMP1.0
+      - SDNC_CONFIG_DIR=/opt/onap/sdnc/data/properties
+    logging:       
+      driver:   "json-file"
+      options:  
+        max-size: "30m"
+        max-file: "5"
+  
+  odlsli:
+    image: ${NEXUS_DOCKER_REPO}/onap/ccsdk-odlsli-image:0.1-STAGING-latest
+    depends_on :
+      - db
+    container_name: ccsdk_odlsli_container
+    entrypoint: ["/opt/onap/sdnc/bin/startODL.sh"]
+    ports:
+      - "8282:8181"
+    links:
+      - db:dbhost
+      - db:sdnctldb01
+      - db:sdnctldb02
+    environment:
+      - MYSQL_ROOT_PASSWORD=openECOMP1.0
+      - SDNC_CONFIG_DIR=/opt/onap/sdnc/data/properties
+    logging:       
+      driver:   "json-file"
+      options:  
+        max-size: "30m"
+        max-file: "5"
+  
+  dgbuilder:
+    image: ${NEXUS_DOCKER_REPO}/onap/ccsdk-dgbuilder-image:0.1-STAGING-latest
+    depends_on:
+      - db
+    container_name:  sdnc_dgbuilder_container
+    entrypoint:
+       - "/bin/bash"
+       - "-c"
+       - "cd /opt/onap/sdnc/dgbuilder/ && ./start.sh sdnc1.0 && wait"
+    ports:
+      - "3000:3100"
+    links:
+      - db:dbhost
+      - db:sdnctldb01
+      - db:sdnctldb02
+      - odlsli:sdnhost
+    environment:
+      - MYSQL_ROOT_PASSWORD=openECOMP1.0
+      - SDNC_CONFIG_DIR=/opt/onap/sdnc/data/properties
+    logging:       
+      driver:   "json-file"
+      options:  
+        max-size: "30m"
+        max-file: "5"
+  
+