2022-10-29 15:22:18 +00:00
|
|
|
{
|
2022-10-29 19:23:09 +02:00
|
|
|
"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"
|
|
|
|
}
|