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

22 lines
623 B
JSON

{
"name": "Codespace to perform Valet Labs",
"image": "mcr.microsoft.com/vscode/devcontainers/universal:linux",
"remoteUser": "codespace",
"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"
],
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-azuretools.vscode-docker"
],
"postCreateCommand": "gh extension install github/gh-valet || echo 'Could not auto-build. Skipping.' "
}