diff options
Diffstat (limited to 'docker_verify.sh')
-rw-r--r-- | docker_verify.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docker_verify.sh b/docker_verify.sh new file mode 100644 index 00000000..6e424c91 --- /dev/null +++ b/docker_verify.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# +echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES =================' + + +DOCKER_REPOSITORY=nexus3.openecomp.org:10003 +DOCKER_VERSION=latest + +cp policy-pe/* target/policy-pe/ +cp policy-drools/* target/policy-drools/ + +for image in policy-os policy-nexus policy-db policy-base policy-drools policy-pe ; do + echo "Building $image" + mkdir -p target/$image + cp $image/* target/$image + docker build --quiet --tag openecomp/policy/$image:${DOCKER_VERSION} --tag ${DOCKER_REPOSITORY}/openecomp/policy/$image:${DOCKER_VERSION} target/$image + docker images +done |