kubernaut/.devcontainer/devcontainer.json
Ryan Cavicchioni af87ba5ed1
All checks were successful
Gitea Actions Demo / lint (push) Successful in 2m29s
Gitea Actions Demo / test (push) Successful in 2m20s
Gitea Actions Demo / release-image (push) Successful in 2m12s
devcontainer: enable accessing host Docker socket
2025-03-30 15:58:41 -05:00

21 lines
482 B
JSON

{
"dockerComposeFile": "compose.yml",
"service": "kubernaut",
"workspaceFolder": "/workspace",
"customizations": {
"vscode": {
"extensions": [
"Shopify.ruby-lsp",
"ms-azuretools.vscode-docker"
]
}
},
"postCreateCommand": ".devcontainer/boot.sh",
"forwardPorts": [
4567
],
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
}
}