From daf99c5fedaa076da6835073e20ec851594aa14d Mon Sep 17 00:00:00 2001 From: emil Date: Wed, 24 Jun 2026 00:33:48 +0000 Subject: [PATCH] DEVX-22: fix: use vfs storage driver for Docker-in-Docker in CI --- .taskid | 2 +- src/devx/molecule/start_docker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.taskid b/.taskid index afa38ff..28eb78d 100644 --- a/.taskid +++ b/.taskid @@ -1 +1 @@ -DEVX-21 +DEVX-22 diff --git a/src/devx/molecule/start_docker.py b/src/devx/molecule/start_docker.py index 284cecd..842a097 100644 --- a/src/devx/molecule/start_docker.py +++ b/src/devx/molecule/start_docker.py @@ -48,7 +48,7 @@ def start_docker_daemon(timeout: int = DEFAULT_TIMEOUT) -> bool: click.echo(_("Starting Docker daemon...")) log_file = open(DOCKERD_LOG, "w") # noqa: SIM115 subprocess.Popen( # nosec B603 B607 - ["dockerd"], + ["dockerd", "--storage-driver", "vfs"], stdout=log_file, stderr=subprocess.STDOUT, start_new_session=True,