From 56144466fd8a9d28baef3d334b09958f305b951a Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Fri, 8 Nov 2024 14:55:00 +0100 Subject: [PATCH] chore(devcontainer): Use host network --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 18fdcba..1dd8e6f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,8 @@ "DOCKER_BUILDKIT": "0", }, "runArgs": [ - "--volume=/tmp/.X11-unix:/tmp/.X11-unix" + "--volume=/tmp/.X11-unix:/tmp/.X11-unix", + "--network", "host" ], // Features to add to the dev container. More info: https://containers.dev/features. // "features": {},