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