Skip to content

Instantly share code, notes, and snippets.

@rightisleft
Created July 14, 2017 15:12
Show Gist options
  • Select an option

  • Save rightisleft/02cd722bee2c6901147ec8be5cd09793 to your computer and use it in GitHub Desktop.

Select an option

Save rightisleft/02cd722bee2c6901147ec8be5cd09793 to your computer and use it in GitHub Desktop.
#!/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