diff options
author | Marcus Williams <marcus.williams@intel.com> | 2017-09-05 19:53:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-05 19:53:29 +0000 |
commit | 0b7c4af87b3ba3460a684ac23fed30d42cf4f2b2 (patch) | |
tree | bd1f6255e7f5124d6888abf2d0aaefb5a09226a4 | |
parent | 28a79d8e48ddfe12a34aca925640371784b6d1cc (diff) | |
parent | d462aa59d784a8697b430fc1f641c92311993f99 (diff) |
Merge "Add docker-compose.yml"
-rw-r--r-- | src/main/yaml/README.md | 10 | ||||
-rw-r--r-- | src/main/yaml/docker-compose.yml | 80 |
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" + + |