chore: initial version of a devcontainer (#6352)

* chore: initial version of a devcontainer

* test

* add make
This commit is contained in:
Florian Forster
2023-08-15 10:49:05 +02:00
committed by GitHub
parent cc4499ec2d
commit 8953353210
5 changed files with 49 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
{
"name": "zitadel",
"dockerComposeFile": "docker-compose.yml",
"service": "devcontainer",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"features": {
"ghcr.io/devcontainers/features/go:1": {
"version": "1.20"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "18"
},
"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"
}