[v9.5.x] CI: Mount /root/.docker/ dir in authenticate-gcr step (#74077)

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

Mount /root/.docker/ dir

(cherry picked from commit eea4adea29)

# Conflicts:
#	.drone.yml
This commit is contained in:
Dimitris Sotirakis
2023-08-30 12:21:52 +03:00
committed by GitHub
parent 3578c80b2c
commit 5ae435971f
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):