1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-04-19 09:01:18 +00:00
next-ory/.devcontainer/devcontainer.json

31 lines
No EOL
485 B
JSON

{
"name": "Node.js",
"dockerComposeFile": [
"docker-compose.yaml"
],
"service": "dashboard",
"workspaceFolder": "/workspaces",
"init": true,
"shutdownAction": "stopCompose",
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker"
]
},
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
}
},
"forwardPorts": [
4433,
4434,
4436,
4437,
4444,
4445,
5555,
5432
],
"postCreateCommand": "npm install -g bun"
}