Files
zitadel/.devcontainer/devcontainer.json

23 lines
514 B
JSON
Raw Normal View History

{
"name": "zitadel",
"dockerComposeFile": "docker-compose.yml",
"service": "devcontainer",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"features": {
"ghcr.io/devcontainers/features/go:1": {
2025-07-18 17:20:57 +02:00
"version": "1.24"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "lts/iron"
},
"ghcr.io/guiyomh/features/golangci-lint:0": {},
"ghcr.io/jungaretti/features/make:1": {}
},
"forwardPorts": [
3000,
4200,
8080
],
"onCreateCommand": "npm install -g sass@1.64.1"
}