You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The images field in the build config file specifies one or more Linux Docker images to be pushed by Cloud Build to Container Registry. You may have a build that performs tasks without producing any Linux Docker images, but if you build images and don't push them to the registry, the images are discarded on build completion
Google Cloud Build has a setting that pushes images on the machine to their registry
https://cloud.google.com/build/docs/build-config-file-schema#images
In order for this to work for the
cloud
runtime:/var/run/docker.sock
into stepsdocker login
docker push
for the specifiedimages
In order for this to work for the
kubernetes
runtime:/var/run/docker.sock
as a shared volumedocker login
docker push
for the specifiedimages
The text was updated successfully, but these errors were encountered: