other
Docker Commands for Build image and push to Google Cloud Run
//build
docker build -t gcr.io/<project-id>/image-name:tag-name .
//push
docker push gcr.io/<project-id>/image-name:tag-name
//authenticating
gcloud auth configure-docker
//delete everything
docker system prune -a --volumes
Docker Commands for Build image and push to Google Cloud Run
Was this helpful?
Similar Posts