Files
zitadel/.devcontainer/base/devcontainer.json

29 lines
749 B
JSON
Raw Permalink Normal View History

{
2025-07-22 01:23:40 +02:00
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/refs/heads/main/schemas/devContainer.schema.json",
2025-08-02 05:35:33 +02:00
"name": "Base: Build and Run the Components you need",
2025-07-26 09:22:41 +02:00
"dockerComposeFile": "docker-compose.yaml",
"service": "devcontainer",
2025-07-24 11:20:35 +02:00
"runServices": [
"devContainer",
"db"
],
2025-07-21 17:13:29 +00:00
"workspaceFolder": "/workspaces",
2025-08-02 05:35:33 +02:00
"remoteEnv": {
"DISPLAY": ""
},
"forwardPorts": [
3000,
2025-07-21 17:13:29 +00:00
3001,
4200,
8080
],
2025-07-25 01:00:36 +02:00
"onCreateCommand": "pnpm install --frozen-lockfile --recursive --prefer-offline",
2025-07-26 09:22:41 +02:00
"features": {
"ghcr.io/devcontainers/features/go:1": {
"version": "1.24"
},
"ghcr.io/guiyomh/features/golangci-lint:0": {},
"ghcr.io/jungaretti/features/make:1": {},
"ghcr.io/devcontainers/features/docker-outside-of-docker": {}
2025-07-21 17:13:29 +00:00
}
2025-07-24 11:20:35 +02:00
}