diff --git a/src/pytest_servers/azure.py b/src/pytest_servers/azure.py index 1ea0bbc..19d0dce 100644 --- a/src/pytest_servers/azure.py +++ b/src/pytest_servers/azure.py @@ -32,7 +32,7 @@ def azurite(docker_client, tmp_path_factory): container = None except NotFound: container = docker_client.containers.run( - "mcr.microsoft.com/azure-storage/azurite:3.27.0", # renovate + "mcr.microsoft.com/azure-storage/azurite:3.35.0", # renovate command="azurite-blob --loose --blobHost 0.0.0.0", name=container_name, stdout=True, diff --git a/src/pytest_servers/gcs.py b/src/pytest_servers/gcs.py index 54dd9fe..6886b56 100644 --- a/src/pytest_servers/gcs.py +++ b/src/pytest_servers/gcs.py @@ -40,7 +40,7 @@ def fake_gcs_server(docker_client, tmp_path_factory): f"-public-host {url} -external-url {url} " ) container = docker_client.containers.run( - "fsouza/fake-gcs-server:1.47.6", # renovate + "fsouza/fake-gcs-server:1.52.3", # renovate name=container_name, command=command, stdout=True,