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}",