Created
February 26, 2026 00:38
-
-
Save kaznak/72a820bb99fd1ec532ac9f992503d2f9 to your computer and use it in GitHub Desktop.
devcontainer for seL4-CAmkES-L4v-dockerfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "name": "seL4-CAmkES-L4v-dockerfiles", | |
| // this file is for https://github.com/seL4/seL4-CAmkES-L4v-dockerfiles.git | |
| // see https://docs.sel4.systems/projects/dockerfiles/ | |
| // and run `make user` before using this devcontainer. | |
| "image": "user_img-${localEnv:USER}", | |
| "workspaceFolder": "/host", | |
| "mounts": [ | |
| "source=${localWorkspaceFolder},target=/host,type=bind,consistency=cached", | |
| "source=${localEnv:USER}-home,target=/home/${localEnv:USER},type=volume" | |
| ], | |
| "remoteUser": "${localEnv:USER}", | |
| "containerUser": "${localEnv:USER}", | |
| "runArgs": [ | |
| "--hostname=in-container", | |
| "--group-add=stack", | |
| "--group-add=sudo" | |
| ], | |
| "postCreateCommand": "sudo chsh -s /bin/bash $(whoami)" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment