Update devcontainer.json

This commit is contained in:
empathicqubit 2022-10-29 19:23:09 +02:00 committed by GitHub
parent 2eb8bebeb9
commit bc82bec9dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,27 @@
{ {
"image": "empathicqubit/vscode-cc65-debugger-build" "name": "Your Definition Name Here (Community)",
}
// Update the 'image' property with your Docker image name.
"image": "docker.io/empathicqubit/vscode-cc65-debugger-build",
// Set *default* container specific settings.json values on container create.
"settings": {},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Uncomment to run commands after the container is created - like installing curl
// "postCreateCommand": "apt-get update && apt-get install -y curl",
// Uncomment to use the Docker CLI from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker.
// "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ],
// Uncomment when using a ptrace-based debugger like C++, Go, and Rust
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
// Comment out to connect as root instead. To add a non-root user, see: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}