mirror of
https://github.com/coder/coder.git
synced 2025-03-14 10:09:57 +00:00
19 lines
466 B
JSON
19 lines
466 B
JSON
{
|
|
"name": "Development environments on your infrastructure",
|
|
"image": "codercom/oss-dogfood:latest",
|
|
|
|
"features": {
|
|
// See all possible options here https://github.com/devcontainers/features/tree/main/src/docker-in-docker
|
|
"ghcr.io/devcontainers/features/docker-in-docker:2": {
|
|
"moby": "false"
|
|
}
|
|
},
|
|
// SYS_PTRACE to enable go debugging
|
|
"runArgs": ["--cap-add=SYS_PTRACE"],
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": ["biomejs.biome"]
|
|
}
|
|
}
|
|
}
|