28 lines
991 B
JSON
28 lines
991 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",
|
|
"image": "mcr.microsoft.com/devcontainers/base:trixie",
|
|
"postCreateCommand": "bash ./.devcontainer/postCreateCommand.sh",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/node:2": {},
|
|
"ghcr.io/warrenbuckley/codespace-features/sqlite:latest": {},
|
|
"ghcr.io/robbert229/devcontainer-features/postgresql-client:1": {},
|
|
"ghcr.io/devcontainers/features/git:1": {},
|
|
"ghcr.io/devcontainers-extra/features/composer:1": {},
|
|
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
|
|
"packages": "plantuml"
|
|
}
|
|
},
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"jebbs.plantuml",
|
|
"xdebug.php-pack",
|
|
"bmewburn.vscode-intelephense-client"
|
|
]
|
|
}
|
|
}
|
|
}
|