Files
Nachhilfesystem24/.devcontainer/devcontainer.json
KoCoder 65acea9917
Some checks failed
build-docker-imge / Build the docker container (push) Failing after 32s
Add devcontainer configuration
2024-10-26 08:54:06 +02:00

30 lines
1.0 KiB
JSON

{
"name": "RedwoosJS & PostgreSQL",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspace",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// This can be used to network with other containers or with the host.
"forwardPorts": [ 8910, 8911, 5432, 5555 ],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "bash scripts/setup.sh",
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint",
"ofhumanbondage.react-proptypes-intellisense",
"mgmcdermott.vscode-language-babel",
"editorconfig.editorconfig",
"prisma.prisma",
"graphql.vscode-graphql"
]
}
},
"remoteUser": "node"
}