Created
July 14, 2017 15:12
-
-
Save rightisleft/02cd722bee2c6901147ec8be5cd09793 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ -z "$1" ]; then | |
| VERSION=manual | |
| else | |
| VERSION=$1 | |
| fi | |
| sudo docker build -t pienso/po-api:latest -t pienso/po-api:$VERSION . && | |
| sudo docker push pienso/po-api && | |
| cd database && | |
| sudo docker build -t pienso/po-postgres:latest -t pienso/po-postgres:$VERSION . && | |
| sudo docker push pienso/po-postgres |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment