Skip to content

Instantly share code, notes, and snippets.

@rhoboro
Created October 3, 2019 11:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
#! /bin/bash
if [ "$1" = "upgrade" ]; then
echo "updating..."
docker pull colorfulboard/bq_profile:latest --quiet > /dev/null
echo "done"
elif [ "$1" = "local" ]; then
docker run -it --rm -v ~/.config/gcloud:/root/.config/gcloud -v $(pwd):/usr/src/app colorfulboard/bq_profile:latest "${@:2:($#-1)}"
else
docker run -it --rm -v $(pwd):/usr/src/app colorfulboard/bq_profile:latest "$@"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment