Skip to content
Snippets Groups Projects
Commit e0e66d29 authored by nimrod's avatar nimrod
Browse files

Raise the timeout even higher.

parent 78595fe8
No related branches found
No related tags found
No related merge requests found
Pipeline #2376 failed
...@@ -43,7 +43,7 @@ def backup(docker_client, registry, image, tag, dest): ...@@ -43,7 +43,7 @@ def backup(docker_client, registry, image, tag, dest):
def backup_registry(registry, dest): def backup_registry(registry, dest):
"""Backup the images in the registry to the destination.""" """Backup the images in the registry to the destination."""
docker_client = docker.from_env(timeout=300) docker_client = docker.from_env(timeout=600)
docker_client.ping() docker_client.ping()
for image in get_images(registry): for image in get_images(registry):
(dest / image).mkdir(exist_ok=True) (dest / image).mkdir(exist_ok=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment