CI: Mount /root/.docker/ dir in authenticate-gcr step (#73977)

Mount /root/.docker/ dir
This commit is contained in:
Dimitris Sotirakis
2023-08-29 10:54:04 +03:00
committed by GitHub
parent ddd4270c94
commit eea4adea29
2 changed files with 12 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ def authenticate_gcr_step():
"environment": {
"GCR_CREDENTIALS": from_secret("gcr_credentials"),
},
"volumes": [{"name": "docker", "path": "/var/run/docker.sock"}],
"volumes": [{"name": "docker", "path": "/var/run/docker.sock"}, {"name": "config", "path": "/root/.docker/"}],
}
def cron_job_pipeline(cronName, name, steps):