Update devcontainer.json
This commit is contained in:
parent
2eb8bebeb9
commit
bc82bec9dd
1 changed files with 26 additions and 2 deletions
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue