Skip to content

Instantly share code, notes, and snippets.

@kaznak
Created February 26, 2026 00:38
Show Gist options
  • Select an option

  • Save kaznak/72a820bb99fd1ec532ac9f992503d2f9 to your computer and use it in GitHub Desktop.

Select an option

Save kaznak/72a820bb99fd1ec532ac9f992503d2f9 to your computer and use it in GitHub Desktop.
devcontainer for seL4-CAmkES-L4v-dockerfiles
{
"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