mirror of
https://github.com/coder/coder.git
synced 2026-06-03 04:58:23 +00:00
856f0ab6f5
* chore: Improve project-wide prettier formatting and ignored files * chore: `Run make fmt/prettier` * Fix gitignore for `.vscode` folder so that ! works * Add comment in `.prettierrc.yaml` to explain `.editorconfig` * Remove scripts/apidocgen/markdown-template/README.md * Use `yq` for processing prettierrc, update lib.sh dependency check * Add `yq` to Dockerfile and Nix
25 lines
738 B
JSON
25 lines
738 B
JSON
// For format details, see https://aka.ms/devcontainer.json
|
|
{
|
|
"name": "Development environments on your infrastructure",
|
|
|
|
// Sets the run context to one level up instead of the .devcontainer folder.
|
|
"context": ".",
|
|
|
|
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
|
|
"dockerFile": "Dockerfile",
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
|
|
"postStartCommand": "dockerd",
|
|
|
|
// privileged is required by GitHub codespaces - https://github.com/microsoft/vscode-dev-containers/issues/727
|
|
"runArgs": [
|
|
"--cap-add=SYS_PTRACE",
|
|
"--security-opt",
|
|
"seccomp=unconfined",
|
|
"--privileged",
|
|
"--init"
|
|
]
|
|
}
|