From c29d6747cb550e5de9b5734e29b87bbee396e108 Mon Sep 17 00:00:00 2001 From: Benjamin Aarsen Date: Tue, 9 Sep 2025 09:56:57 +0200 Subject: [PATCH] update devcontainer with privileged mode --- devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devcontainer.json b/devcontainer.json index d6271d3..24b2923 100644 --- a/devcontainer.json +++ b/devcontainer.json @@ -8,9 +8,9 @@ // "--cap-add=SYS_PTRACE", // Allows the container to trace processes using ptrace system call // "--security-opt=seccomp=unconfined", // Disables seccomp security profiles for the container // "--ipc=host", // Shares the host's IPC namespace with the container - "--network=host" // Shares the host's network namespace with the container + "--network=host", // Shares the host's network namespace with the container // "--pid=host", // Shares the host's PID namespace with the container - // "--privileged", // Gives the container full access to the host's devices and allows it to run with root privileges + "--privileged", // Gives the container full access to the host's devices and allows it to run with root privileges ], "workspaceMount": "source=${localWorkspaceFolder},target=/home/ubuntu/${localWorkspaceFolderBasename},type=bind", "workspaceFolder": "/home/ubuntu/${localWorkspaceFolderBasename}",