Skip to content

Instantly share code, notes, and snippets.

@rzymek
Created January 19, 2020 20:56
Show Gist options
  • Save rzymek/a639a68781b65f09fe09253e6c63325c to your computer and use it in GitHub Desktop.
Save rzymek/a639a68781b65f09fe09253e6c63325c to your computer and use it in GitHub Desktop.
gcloud run docker
#!/bin/bash
set -eu
cd `dirname $0`
docker build . -t gcr.io/sandbox-p/spring
docker push gcr.io/sandbox-p/spring
gcloud run deploy spring \
--image=gcr.io/sandbox-p/spring \
--platform managed \
--region europe-west1 \
--allow-unauthenticated
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment