mirror of
https://github.com/zitadel/zitadel
synced 2024-11-21 16:30:53 +00:00
abe2502b27
# Which Problems Are Solved Node devcontainer still used node version 18. # How the Problems Are Solved Use default (lts) version to mitigate problems. # Additional Changes None # Additional Context - reference: https://github.com/devcontainers/features/tree/main/src/node Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
23 lines
606 B
JSON
23 lines
606 B
JSON
{
|
|
"name": "zitadel",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "devcontainer",
|
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/go:1": {
|
|
"version": "1.22"
|
|
},
|
|
"ghcr.io/devcontainers/features/node:1": {},
|
|
"ghcr.io/guiyomh/features/golangci-lint:0": {},
|
|
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
|
|
"ghcr.io/devcontainers/features/github-cli:1": {},
|
|
"ghcr.io/jungaretti/features/make:1": {}
|
|
},
|
|
"forwardPorts": [
|
|
3000,
|
|
4200,
|
|
8080
|
|
],
|
|
"onCreateCommand": "npm install -g sass@1.64.1"
|
|
}
|