hardcoding nexus for demo team 29/1229/2
authorPamela Dragosh <pdragosh@research.att.com>
Wed, 22 Feb 2017 19:40:47 +0000 (14:40 -0500)
committerPamela Dragosh <pdragosh@research.att.com>
Wed, 22 Feb 2017 19:47:02 +0000 (14:47 -0500)
Change-Id: I69f516128a3209c40441de568bac506b09f4ea45
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
.gitignore [new file with mode: 0644]
docker-compose.yml
docker_verify.sh

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..5ddaecd
--- /dev/null
@@ -0,0 +1,3 @@
+.project
+.settings
+target
index 8dd2325..791f058 100644 (file)
@@ -1,17 +1,17 @@
 version: '2'
 services:
    mariadb:
-      image: openecomp/policy/policy-db
+      image: nexus3.openecomp.org:10001/openecomp/policy/policy-db
       container_name: mariadb
       hostname: mariadb
       ports:
        - "3306:3306"
    nexus:
-      image: openecomp/policy/policy-nexus
+      image: nexus3.openecomp.org:10001/openecomp/policy/policy-nexus
       container_name: nexus
       hostname: nexus
    pap:
-      image: openecomp/policy/policy-pe
+      image: nexus3.openecomp.org:10001/openecomp/policy/policy-pe
       container_name: pap
       depends_on: 
        - mariadb
@@ -23,7 +23,7 @@ services:
       volumes:
        - ./config/pe:/tmp/policy-install/config
    pdp:
-      image: openecomp/policy/policy-pe
+      image: nexus3.openecomp.org:10001/openecomp/policy/policy-pe
       container_name: pdp
       depends_on: 
        - pap
@@ -34,7 +34,7 @@ services:
       volumes:
        - ./config/pe:/tmp/policy-install/config
    pypdp:
-      image: openecomp/policy/policy-pe
+      image: nexus3.openecomp.org:10001/openecomp/policy/policy-pe
       container_name: pypdp
       depends_on: 
        - pap
@@ -45,7 +45,7 @@ services:
       volumes:
        - ./config/pe:/tmp/policy-install/config
    brmsgw:
-      image: openecomp/policy/policy-pe
+      image: nexus3.openecomp.org:10001/openecomp/policy/policy-pe
       container_name: brmsgw
       depends_on: 
        - pap
@@ -54,7 +54,7 @@ services:
       volumes:
        - ./config/pe:/tmp/policy-install/config
    drools:
-      image: openecomp/policy/policy-drools
+      image: nexus3.openecomp.org:10001/openecomp/policy/policy-drools
       container_name: drools
       depends_on: 
        - mariadb
index 6e424c9..8cbfe99 100644 (file)
@@ -6,13 +6,3 @@ 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