Files
monica/.devcontainer/devcontainer.json
T
2023-09-06 20:48:42 +02:00

17 lines
549 B
JSON

{
"name": "PHP & SQLite",
"service": "app",
"workspaceFolder": "/workspace",
"dockerComposeFile": "docker-compose.yml",
// For use with PHP or Apache (e.g.php -S localhost:8080 or apache2ctl start)
"forwardPorts": [8080],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": ".devcontainer/postCreate.sh",
"postStartCommand": ".devcontainer/postStart.sh"
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode"
}