Files
DocumentsPlayground/.devcontainer/devcontainer.json
2026-02-08 13:43:19 +00:00

17 lines
909 B
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Debian",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:trixie",
"postCreateCommand": "sudo apt update && sudo apt -y install plantuml php php-cli php-zip php-sqlite3 php-xml php-pgsql php-bcmath php-intl php-mbstring composer npm sqlite3 && composer config http-basic.satis.ralphjsmit.com dominik.warch@geoventis.de 40980cf3-4870-47fc-bd92-0790646bb394 && composer install && npm install",
"customizations": {
"vscode": {
"extensions": [
"jebbs.plantuml",
"xdebug.php-pack",
"bmewburn.vscode-intelephense-client"
]
}
}
}