Files
importer-labs/.devcontainer/devcontainer.json
T

22 lines
623 B
JSON
Raw Normal View History

2022-05-10 14:32:07 -07:00
{
2022-08-23 15:22:48 -07:00
"name": "Codespace to perform Valet Labs",
2022-05-10 14:32:07 -07:00
"image": "mcr.microsoft.com/vscode/devcontainers/universal:linux",
"remoteUser": "codespace",
"overrideCommand": false,
2022-08-08 10:14:06 -07:00
"mounts": [
"source=codespaces-linux-var-lib-docker,target=/var/lib/docker,type=volume"
],
2022-05-10 14:32:07 -07:00
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined",
"--privileged",
"--init"
],
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
2022-08-23 15:22:48 -07:00
"ms-azuretools.vscode-docker"
2022-05-10 14:32:07 -07:00
],
2022-08-23 15:22:48 -07:00
"postCreateCommand": "gh extension install github/gh-valet || echo 'Could not auto-build. Skipping.' "
2022-05-10 14:32:07 -07:00
}