39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "Devbox",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "devbox",
|
|
"workspaceFolder": "/workspace",
|
|
"shutdownAction": "stopCompose",
|
|
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
// Configure properties specific to VS Code.
|
|
"vscode": {
|
|
// 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": [
|
|
"eamodio.gitlens",
|
|
"esbenp.prettier-vscode",
|
|
"Gruntfuggly.todo-tree",
|
|
"jetpack-io.devbox",
|
|
"mads-hartmann.bash-ide-vscode",
|
|
"mkhl.shfmt",
|
|
"mutantdino.resourcemonitor",
|
|
"tamasfe.even-better-toml"
|
|
]
|
|
}
|
|
},
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
// "postCreateCommand": "docker --version",
|
|
|
|
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
// "remoteUser": "devbox"
|
|
}
|
|
|