cleaning up - better verify/merge 03/1303/2
authorPamela Dragosh <pdragosh@research.att.com>
Thu, 23 Feb 2017 15:37:49 +0000 (10:37 -0500)
committerPamela Dragosh <pdragosh@research.att.com>
Thu, 23 Feb 2017 16:18:20 +0000 (11:18 -0500)
Change-Id: Ief6428eefa6faed69236c9c481e500a0e7948e0b
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
docker-compose.yml
docker_build.sh [changed mode: 0644->0755]
docker_merge.sh [new file with mode: 0755]
docker_verify.sh [changed mode: 0644->0755]
pom.xml

index 791f058..67719d9 100644 (file)
@@ -1,17 +1,17 @@
 version: '2'
 services:
    mariadb:
-      image: nexus3.openecomp.org:10001/openecomp/policy/policy-db
+      image: ${DOCKER_REPOSITORY}/openecomp/policy/policy-db
       container_name: mariadb
       hostname: mariadb
       ports:
        - "3306:3306"
    nexus:
-      image: nexus3.openecomp.org:10001/openecomp/policy/policy-nexus
+      image: ${DOCKER_REPOSITORY}/openecomp/policy/policy-nexus
       container_name: nexus
       hostname: nexus
    pap:
-      image: nexus3.openecomp.org:10001/openecomp/policy/policy-pe
+      image: ${DOCKER_REPOSITORY}/openecomp/policy/policy-pe
       container_name: pap
       depends_on: 
        - mariadb
@@ -23,7 +23,7 @@ services:
       volumes:
        - ./config/pe:/tmp/policy-install/config
    pdp:
-      image: nexus3.openecomp.org:10001/openecomp/policy/policy-pe
+      image: ${DOCKER_REPOSITORY}/openecomp/policy/policy-pe
       container_name: pdp
       depends_on: 
        - pap
@@ -34,7 +34,7 @@ services:
       volumes:
        - ./config/pe:/tmp/policy-install/config
    pypdp:
-      image: nexus3.openecomp.org:10001/openecomp/policy/policy-pe
+      image: ${DOCKER_REPOSITORY}/openecomp/policy/policy-pe
       container_name: pypdp
       depends_on: 
        - pap
@@ -45,7 +45,7 @@ services:
       volumes:
        - ./config/pe:/tmp/policy-install/config
    brmsgw:
-      image: nexus3.openecomp.org:10001/openecomp/policy/policy-pe
+      image: ${DOCKER_REPOSITORY}/openecomp/policy/policy-pe
       container_name: brmsgw
       depends_on: 
        - pap
@@ -54,7 +54,7 @@ services:
       volumes:
        - ./config/pe:/tmp/policy-install/config
    drools:
-      image: nexus3.openecomp.org:10001/openecomp/policy/policy-drools
+      image: ${DOCKER_REPOSITORY}/openecomp/policy/policy-drools
       container_name: drools
       depends_on: 
        - mariadb
old mode 100644 (file)
new mode 100755 (executable)
index 001a2c0..b21a695
@@ -6,6 +6,9 @@ echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES ================='
 DOCKER_REPOSITORY=nexus3.openecomp.org:10003
 DOCKER_VERSION=latest
 
+export DOCKER_REPOSITORY
+export DOCKER_VERSION
+
 cp policy-pe/* target/policy-pe/
 cp policy-drools/* target/policy-drools/
 
diff --git a/docker_merge.sh b/docker_merge.sh
new file mode 100755 (executable)
index 0000000..6501978
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/bash
+#
+echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+DOCKER_REPOSITORY=nexus3.openecomp.org:10003
+DOCKER_VERSION=latest
+
+export DOCKER_REPOSITORY
+export DOCKER_VERSION
+
+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
old mode 100644 (file)
new mode 100755 (executable)
index 8cbfe99..6501978
@@ -2,7 +2,19 @@
 #
 echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES ================='
 
-
 DOCKER_REPOSITORY=nexus3.openecomp.org:10003
 DOCKER_VERSION=latest
 
+export DOCKER_REPOSITORY
+export DOCKER_VERSION
+
+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
diff --git a/pom.xml b/pom.xml
index af499c4..f93ef38 100644 (file)
--- a/pom.xml
+++ b/pom.xml
        </properties>
 
        <repositories>
-<!--
-               <repository>
-                       <id>central</id>
-                       <name>Maven 2 repository</name>
-                       <url>http://repo2.maven.org/maven2/</url>
-               </repository>
-               <repository>
-                       <id>soapUI</id>
-                       <url>http://www.soapui.org/repository/maven2/</url>
-                       <name>SoapUI plugin</name>
-               </repository>
--->
                <repository>
                        <id>ecomp-releases</id>
                        <name>OpenECOMP Release Repository</name>