Files
devcontainers/common-base/.devcontainer/devcontainer.json
2026-02-14 20:21:28 +08:00

39 lines
1.0 KiB
JSON

{
"build": {
"dockerfile": "./Dockerfile",
"context": ".",
},
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"username": "codespace",
"userUid": "1000",
"userGid": "1000",
"configureZshAsDefaultShell": true,
},
"ghcr.io/devcontainers/features/sshd:1": {
"gatewayPorts": "yes",
},
"ghcr.io/devcontainers/features/desktop-lite:1": {
"password": "noPassword",
},
},
"remoteUser": "codespace",
"containerUser": "codespace",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"lldb.executable": "/usr/bin/lldb",
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [],
},
},
}