From d7c9b7fa942645cdda1d6f3224ce9f6e8cc2c716 Mon Sep 17 00:00:00 2001 From: emil Date: Fri, 14 Aug 2026 20:53:21 +0200 Subject: [PATCH] DEVX-155: fix: disable bridge and ip6tables for local dockerd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new dockerd can't create bridge network or ip6tables chains (permission denied). Disable both — molecule tests use host network. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- src/devx/molecule/start_docker.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devx/molecule/start_docker.py b/src/devx/molecule/start_docker.py index 1e73879..9345ff3 100644 --- a/src/devx/molecule/start_docker.py +++ b/src/devx/molecule/start_docker.py @@ -253,6 +253,8 @@ def start_docker_daemon(timeout: int = DEFAULT_TIMEOUT) -> bool: "--data-root", docker_data_root, "--iptables=false", + "--ip6tables=false", + "--bridge=none", "-H", f"unix://{local_sock}", ],