diff options
author | Dan Timoney <dtimoney@att.com> | 2021-01-25 14:47:00 -0500 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2021-02-05 23:55:15 +0000 |
commit | 1f4e903277d4f94db0bed99245026b82fa36fba3 (patch) | |
tree | f426216288db21cc1b1c407eb4eec7a90e7f0145 /odlsli/src/main | |
parent | ef87ec9bc0c87220cfa57a5a72c628e2173b68ad (diff) |
Update to ODL Aluminum SR1
Update to OpenDaylight Aluminum SR1 release
Change-Id: Ifcd172fec903dd2fb681b6998d45eac690066d10
Issue-ID: CCSDK-3107
Signed-off-by: Dan Timoney <dtimoney@att.com>
Signed-off-by: Michael DÜrre <michael.duerre@highstreet-technologies.com>
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
Diffstat (limited to 'odlsli/src/main')
-rwxr-xr-x | odlsli/src/main/dc/docker-compose.yaml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/odlsli/src/main/dc/docker-compose.yaml b/odlsli/src/main/dc/docker-compose.yaml new file mode 100755 index 00000000..e48a8302 --- /dev/null +++ b/odlsli/src/main/dc/docker-compose.yaml @@ -0,0 +1,42 @@ +version: '2.1' + +services: + db: + image: mariadb:10.5 + container_name: odlsli_db + ports: + - "3306" + environment: + - MYSQL_ROOT_PASSWORD=MySecretPassword + - MYSQL_ROOT_HOST=% + logging: + driver: "json-file" + options: + max-size: "30m" + max-file: "5" + + + odlsli: + image: onap/ccsdk-odlsli-alpine-image:latest + depends_on: + - db + container_name: odlsli_controller + entrypoint: ["/opt/onap/ccsdk/bin/startODL.sh"] + ports: + - "8383:8181" + - "1830:1830" + - "8543:8443" + links: + - db:dbhost + - db:sdnctldb01 + - db:sdnctldb02 + environment: + - MYSQL_ROOT_PASSWORD=MySecretPassword + - SDNC_CONFIG_DIR=/opt/onap/ccsdk/data/properties + logging: + driver: "json-file" + options: + max-size: "30m" + max-file: "5" + + |