Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"remoteUser": "vscode",
// Grant the container access to the host's Docker daemon
"runArgs": [
"--privileged",
"--init"
]
Comment on lines 50 to 52
Copy link

Copilot AI Oct 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the --privileged flag improves container security by following the principle of least privilege. However, ensure that any functionality that previously required privileged access (such as Docker-in-Docker operations) still works correctly with the current configuration.

Copilot uses AI. Check for mistakes.
}
}