[PORTAL-20,PORTAL-23,PORTAL-32] Repair defects
[portal.git] / deliveries / os_docker_push.sh
old mode 100644 (file)
new mode 100755 (executable)
index a58f5aa..04e245c
@@ -1,7 +1,27 @@
 #!/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
+./run.sh
+
+REPO="nexus3.onap.org:10003"
+
+TIMESTAMP=$(date +%C%y%m%dT%H%M%S)
+VERSION="1.1.0-SNAPSHOT-${TIMESTAMP}"
+LATEST="latest"
+
+APPS_VERSION="${REPO}/openecomp/portalapps:${VERSION}"
+DB_VERSION="${REPO}/openecomp/portaldb:${VERSION}"
+
+APPS_LATEST="${REPO}/openecomp/portalapps:${LATEST}"
+DB_LATEST="${REPO}/openecomp/portaldb:${LATEST}"
+
+# tag version
+docker tag ep:1610-1 ${APPS_VERSION}
+docker tag ecompdb:portal ${DB_VERSION}
+docker tag ep:1610-1 ${APPS_LATEST}
+docker tag ecompdb:portal ${DB_LATEST}
+
+# push
+docker push ${APPS_VERSION}
+docker push ${DB_VERSION}
+docker push ${APPS_LATEST}
+docker push ${DB_LATEST}