aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/policy/docker-compose-pap.yml
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2019-06-03 15:00:08 -0400
committerBilal A <bilal@research.att.com>2019-06-05 17:37:47 +0000
commite57042c32af6b290186f8f7dce25e5968056c8ff (patch)
tree79d3036e6aac2d518f1adca98143792f3eaa33b1 /scripts/policy/docker-compose-pap.yml
parent1e0b621a2449411fcd0e5f2cce247170b6d12bd7 (diff)
Run DB script before starting other containers
The other containers were starting before their user names had been added to the DB. Consequently, they were aborting at start-up. Modified the various setup.sh scripts to run the DB-init script before starting the remaing containers. Also add start_all to start the containers and wait for the ports to start listening, eliminating the need for the "curl" tests in the setup.sh scripts. Also removed version numbers from some yml files. Change-Id: Idd9ff81b3ab4a78926b644f22360c9222afe82d5 Issue-ID: POLICY-1829 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'scripts/policy/docker-compose-pap.yml')
-rw-r--r--scripts/policy/docker-compose-pap.yml20
1 files changed, 18 insertions, 2 deletions
diff --git a/scripts/policy/docker-compose-pap.yml b/scripts/policy/docker-compose-pap.yml
index 115f8840..383e1bc8 100644
--- a/scripts/policy/docker-compose-pap.yml
+++ b/scripts/policy/docker-compose-pap.yml
@@ -27,10 +27,10 @@ services:
ports:
- "3306:3306"
pap:
- image: nexus3.onap.org:10001/onap/policy-pap:2.0.0-SNAPSHOT-latest
+ image: nexus3.onap.org:10001/onap/policy-pap
container_name: policy-pap
depends_on:
- - "mariadb"
+ - mariadb
hostname: policy-pap
ports:
- "6969:6969"
@@ -44,8 +44,24 @@ services:
- "9969:6969"
start_dependencies:
image: dadarek/wait-for-dependencies
+ environment:
+ TIMEOUT_LENGTH: 60
container_name: policy-wait
depends_on:
- mariadb
hostname: policy-wait
command: mariadb:3306
+ start_all:
+ image: dadarek/wait-for-dependencies
+ environment:
+ TIMEOUT_LENGTH: 60
+ container_name: policy-wait-all
+ depends_on:
+ - mariadb
+ - pap
+ - api
+ hostname: policy-wait-all
+ command:
+ mariadb:3306
+ pap:6969
+ api:6969