talasila | b10edf9 | 2017-02-22 11:02:09 -0500 | [diff] [blame^] | 1 | #!/bin/bash |
2 | |||||
3 | ./run.sh | ||||
4 | |||||
5 | REPO="nexus3.openecomp.org:10002" | ||||
6 | |||||
7 | APPS="${REPO}/openecomp/portalapps:1.0.0" | ||||
8 | DB="${REPO}/openecomp/portaldb:1.0.0" | ||||
9 | |||||
10 | # docker login nexus3.openecomp.org:10002 | ||||
11 | |||||
12 | # tag | ||||
13 | docker tag ep:1610-1 ${APPS} | ||||
14 | docker tag ecompdb:portal ${DB} | ||||
15 | |||||
16 | # push | ||||
17 | docker push ${APPS} | ||||
18 | docker push ${DB} |