35 lines
1.2 KiB
JSON
35 lines
1.2 KiB
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/alpine
|
|
{
|
|
"name": "Nextcloud DevContainer",
|
|
"dockerComposeFile": ["./docker-compose.yml"],
|
|
"service": "nextcloud",
|
|
"workspaceFolder": "/var/www/html/custom_apps/memories",
|
|
// 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.
|
|
// "forwardPorts": [],
|
|
"postCreateCommand": "echo 'Container Created'",
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"bmewburn.vscode-intelephense-client",
|
|
"muuvmuuv.vscode-just-php-cs-fixer",
|
|
"getpsalm.psalm-vscode-plugin",
|
|
"esbenp.prettier-vscode",
|
|
"Vue.volar",
|
|
"Vue.vscode-typescript-vue-plugin"
|
|
],
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash"
|
|
// Add any other VS Code settings you need for your project
|
|
}
|
|
}
|
|
},
|
|
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
"remoteUser": "root"
|
|
}
|