X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=installation%2Fsrc%2Fmain%2Fyaml%2Fdocker-compose.yml;h=8928cbd19242c9d4e1280200c89833ce26df875c;hb=761e1086b0b2113d7c3dc794069d435054e7d1cf;hp=9ddde8f4d07a5a9da77249e4dd249072bf8d64eb;hpb=13e93c95d77af7da8c7c099f02a0d8f1ea9b2141;p=sdnc%2Foam.git diff --git a/installation/src/main/yaml/docker-compose.yml b/installation/src/main/yaml/docker-compose.yml index 9ddde8f4..8928cbd1 100644 --- a/installation/src/main/yaml/docker-compose.yml +++ b/installation/src/main/yaml/docker-compose.yml @@ -31,6 +31,7 @@ services: entrypoint: ["/opt/onap/sdnc/bin/startODL.sh"] ports: - "8282:8181" + - "8201:8101" links: - db:dbhost - db:sdnctldb01 @@ -99,3 +100,42 @@ services: max-file: "5" + ueblistener: + image: onap/sdnc-ueb-listener-image:latest + depends_on: + - db + container_name: sdnc_ueblistener_container + entrypoint: ["/opt/onap/sdnc/ueb-listener/bin/start-ueb-listener.sh" ] + links: + - db:dbhost + - db:sdnctldb01 + - db:sdnctldb02 + - sdnc:sdnhost + environment: + - SDNC_CONFIG_DIR=/opt/onap/sdnc/data/properties + - PROPERTY_DIR=/opt/onap/sdnc/data/properties + logging: + driver: "json-file" + options: + max-size: "30m" + max-file: "5" + + dmaaplistener: + image: onap/sdnc-dmaap-listener-image:latest + depends_on: + - db + container_name: sdnc_ueblistener_container + entrypoint: ["/opt/onap/sdnc/dmaap-listener/bin/start-dmaap-listener.sh" ] + links: + - db:dbhost + - db:sdnctldb01 + - db:sdnctldb02 + - sdnc:sdnhost + environment: + - SDNC_CONFIG_DIR=/opt/onap/sdnc/data/properties + - PROPERTY_DIR=/opt/onap/sdnc/data/properties + logging: + driver: "json-file" + options: + max-size: "30m" + max-file: "5"