summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2017-09-05 12:37:04 -0400
committerDan Timoney <dtimoney@att.com>2017-09-05 12:37:13 -0400
commitd462aa59d784a8697b430fc1f641c92311993f99 (patch)
tree2a146405707aa58e934a03a5b36f224f060fe9b7 /src
parent1ea29657dc84d7f7b15b8d9ffce625985db0127e (diff)
Add docker-compose.yml
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>
Diffstat (limited to 'src')
-rw-r--r--src/main/yaml/README.md10
-rw-r--r--src/main/yaml/docker-compose.yml80
2 files changed, 90 insertions, 0 deletions
diff --git a/src/main/yaml/README.md b/src/main/yaml/README.md
new file mode 100644
index 00000000..6e536a60
--- /dev/null
+++ b/src/main/yaml/README.md
@@ -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
index 00000000..ba1b87e0
--- /dev/null
+++ b/src/main/yaml/docker-compose.yml
@@ -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"
+
+