aboutsummaryrefslogtreecommitdiffstats
path: root/installation/src/main/yaml/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'installation/src/main/yaml/docker-compose.yml')
-rw-r--r--installation/src/main/yaml/docker-compose.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/installation/src/main/yaml/docker-compose.yml b/installation/src/main/yaml/docker-compose.yml
index c74eacec..2a39f216 100644
--- a/installation/src/main/yaml/docker-compose.yml
+++ b/installation/src/main/yaml/docker-compose.yml
@@ -98,4 +98,42 @@ services:
max-size: "30m"
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_dmaaplistener_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"