Skip to content

Commit

Permalink
devcontainer: add missing privileges
Browse files Browse the repository at this point in the history
  • Loading branch information
paradajz committed Nov 28, 2024
1 parent 47bbab0 commit 3d60b73
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"workspaceMount": "src=${localWorkspaceFolder},dst=/home/ubuntu/workspace/OpenDeck,type=bind",
"workspaceFolder": "/home/ubuntu/workspace/OpenDeck",
"mounts": [
{
"source": "/dev",
"target": "/dev",
"type": "bind"
},
{
"source": "${localEnv:HOME}/.gitconfig",
"target": "/etc/gitconfig",
Expand All @@ -23,6 +28,7 @@
"--hostname=${localWorkspaceFolderBasename}"
],
"containerUser": "ubuntu",
"privileged": true,
"customizations": {
"vscode": {
"extensions": [
Expand Down

0 comments on commit 3d60b73

Please sign in to comment.