From 560a5cc753ad1195652292c17f519e6883b2f30f Mon Sep 17 00:00:00 2001 From: talasila Date: Fri, 17 Feb 2017 13:39:09 -0500 Subject: docker repo added Change-Id: Iddea458d4ebba8131519cb68d4c0f417d4c09e37 Signed-off-by: talasila --- .idea/workspace.xml | 57 ++++++++++++++++++++------------------------ deliveries/os_docker_push.sh | 19 +++++++++++---- 2 files changed, 40 insertions(+), 36 deletions(-) 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 -- cgit 1.2.3-korg