aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTomasz Golabek <tomasz.golabek@nokia.com>2018-10-01 16:32:13 +0200
committerTomasz Golabek <tomasz.golabek@nokia.com>2018-10-09 08:28:47 +0200
commit07fb4c0a995b1f66fb79a5ff6419542a9accaefe (patch)
treefc6aa8c86defca3a3114e6f2155cdc384ccfa09d /src
parentdab5fa2a04febc4681bba94f0d798819a0c35b66 (diff)
Dockerfile generated via maven
Added creation of the Dockerfile inside the pom.xml Change-Id: I8d8b8e33aa1aaa33f20b8480c6831c5f00948be7 Issue-ID: DMAAP-828 Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/main/resources/docker-compose.yml25
-rw-r--r--src/main/resources/docker-databus-controller.conf12
2 files changed, 37 insertions, 0 deletions
diff --git a/src/main/resources/docker-compose.yml b/src/main/resources/docker-compose.yml
new file mode 100644
index 0000000..41bc473
--- /dev/null
+++ b/src/main/resources/docker-compose.yml
@@ -0,0 +1,25 @@
+version: '2'
+services:
+ dbc-pg-primary:
+ image: crunchydata/crunchy-postgres:centos7-10.4-2.0.0
+ ports:
+ - "5432:5432"
+ environment:
+ - PG_MODE=master
+ - PG_PRIMARY_USER="dmaap_admin"
+ - PG_PRIMARY_PASSWORD=onapdemodb
+ - PG_USER="dmaap_admin"
+ - PG_PASSWORD=onapdemodb
+ - PG_ROOT_PASSWORD=onapdemodb
+ - PG_DATABASE="dmaap"
+ - PG_PRIMARY_PORT=5432
+
+ dmaap-bc:
+ image: nexus3.onap.org:10001/onap/dmaap/buscontroller:latest
+ ports:
+ - "30241:8080"
+ - "30242:8443"
+ volumes:
+ - /var/tmp/docker-databus-controller.conf:/opt/app/config/conf
+ depends_on:
+ - dbc-pg-primary
diff --git a/src/main/resources/docker-databus-controller.conf b/src/main/resources/docker-databus-controller.conf
new file mode 100644
index 0000000..7214adf
--- /dev/null
+++ b/src/main/resources/docker-databus-controller.conf
@@ -0,0 +1,12 @@
+DMAAPBC_WAIT_TO_EXIT=Y
+DMAAPBC_PG_ENABLED=true
+DMAAPBC_PGHOST=dbc-pg-primary
+DMAAPBC_PGDBNAME=dmaap
+DMAAPBC_PGCRED=onapdemodb
+DMAAPBC_PGUSER=dmaap_admin
+DMAAPBC_MR_CNAME=message-router
+DMAAPBC_AAF_URL=https://aaf-authz/
+DMAAPBC_TOPICMGR_USER=m23456@dmaapbc.onap.org
+DMAAPBC_TOPICMGR_PWD=onapdemo
+DMAAPBC_ADMIN_USER=m12345@dmaapbc.onap.org
+DMAAPBC_ADMIN_PWD=onapdemo \ No newline at end of file