From: talasila Date: Fri, 17 Feb 2017 18:39:09 +0000 (-0500) Subject: docker repo added X-Git-Tag: v1.3.0~84 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F63%2F663%2F1;p=portal.git docker repo added Change-Id: Iddea458d4ebba8131519cb68d4c0f417d4c09e37 Signed-off-by: talasila --- diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 02573872..55e8bfdf 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,11 +2,6 @@ - - - - - @@ -431,7 +426,7 @@ - + @@ -445,7 +440,7 @@ - + @@ -551,15 +546,7 @@ - - - - - - - - - + @@ -580,18 +567,26 @@ + + + + + + + + - - + + - + - - + + diff --git a/deliveries/os_docker_push.sh b/deliveries/os_docker_push.sh index a58f5aae..e19a360a 100644 --- a/deliveries/os_docker_push.sh +++ b/deliveries/os_docker_push.sh @@ -1,7 +1,16 @@ #!/bin/bash -#docker login -docker tag ep:1610-1 portalapps:1.0.0 -docker tag ecompdb:portal portaldb:1.0.0 -docker push portalapps:1.0.0 -docker push portaldb:1.0.0 \ No newline at end of file +REPO="nexus3.openecomp.org:10003" + +APPS="${REPO}/openecomp/portalapps:1.0.0" +DB="${REPO}/openecomp/portaldb:1.0.0" + +# docker login nexus3.openecomp.org:10003 + +# tag +docker tag ep:1610-1 ${APPS} +docker tag ecompdb:portal ${DB} + +# push +docker push ${APPS} +docker push ${DB} \ No newline at end of file