39 lines
1.0 KiB
JSON
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": [],
|
|
},
|
|
},
|
|
}
|