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

32 lines
815 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",
2022-09-19 14:02:05 -07:00
"overrideCommand": false,
"mounts": [
"source=codespaces-linux-var-lib-docker,target=/var/lib/docker,type=volume"
],
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined",
"--privileged",
"--init"
],
"remoteEnv": {
2022-09-19 15:19:57 -07:00
"DOCKER_ARGS": "--network=host",
"INSTALLATION_TYPE": "labs"
2022-09-19 14:02:05 -07:00
},
"customizations": {
"vscode": {
"settings": {
2022-09-19 16:46:46 -07:00
"files.autoSave": "onFocusChange",
"editor.tabSize": 2
2022-09-19 14:02:05 -07:00
},
"extensions": [
"ms-azuretools.vscode-docker"
]
}
},
"postCreateCommand": "gh extension install github/gh-valet || echo 'Could not auto-build. Skipping.' "
}