mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
9dd158b70d
* postCreateCommand is executed too early * If git config commands run in postCreate, a global .gitconfig will be created * Copy of local .gitconfig will be skipped if .gitconfig already exists in container * Move to later stage * https://github.com/devcontainers/cli/issues/98 * https://github.com/microsoft/vscode-remote-release/issues/4855#issuecomment-831920085 Signed-off-by: GitHub <noreply@github.com>
28 lines
591 B
JSON
28 lines
591 B
JSON
{
|
|
"name": "NextcloudServer",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "nextclouddev",
|
|
"postCreateCommand": ".devcontainer/setup.sh",
|
|
"postStartCommand": ".devcontainer/postStart.sh",
|
|
"forwardPorts": [
|
|
80,
|
|
8080,
|
|
8025
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"felixfbecker.php-debug",
|
|
"felixfbecker.php-intellisense",
|
|
"ms-azuretools.vscode-docker",
|
|
"xdebug.php-debug",
|
|
"donjayamanne.githistory"
|
|
],
|
|
"settings": {
|
|
"php.suggest.basic": false
|
|
}
|
|
}
|
|
},
|
|
"workspaceFolder": "/var/www/html",
|
|
"remoteUser": "devcontainer"
|
|
}
|