audon/.devcontainer/devcontainer.json

42 wiersze
1.4 KiB
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/universal
{
"name": "Audon Dev Container",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
// "image": "mcr.microsoft.com/devcontainers/universal:2-linux"
"dockerComposeFile": "docker-compose.dev.yaml",
"service": "devcontainer",
"workspaceFolder": "/audon-go",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/go:1": {},
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
"packages": "libmagick++-dev,libwebp-dev"
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": []
// Use 'postCreateCommand' to run commands after the container is created.
// "onCreateCommand": "",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"golang.go",
"Vue.volar",
"esbenp.prettier-vscode",
"EditorConfig.EditorConfig",
"ms-azuretools.vscode-docker"
]
}
},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "root"
}