update devcontainer with privileged mode

This commit is contained in:
2025-09-09 09:56:57 +02:00
parent 93f2367536
commit c29d6747cb

View File

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