science-ation/.devcontainer/devcontainer.json

29 lines
995 B
JSON
Raw Permalink Normal View History

2025-01-06 16:33:07 +00:00
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2025-01-06 19:51:31 +00:00
// README at: https://github.com/devcontainers/templates/tree/main/src/php-mariadb
2025-01-06 16:33:07 +00:00
{
2025-01-06 19:51:31 +00:00
"name": "PHP & MariaDB",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
2025-01-06 16:33:07 +00:00
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
2025-01-06 19:51:31 +00:00
// For use with PHP or Apache (e.g.php -S localhost:8080 or apache2ctl start)
2025-01-30 03:42:52 +00:00
"forwardPorts": [80, 3306],
2025-01-06 16:33:07 +00:00
2025-01-06 19:51:31 +00:00
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "sudo chmod a+x \"$(pwd)\" && sudo rm -rf /var/www/html && sudo ln -s \"$(pwd)\" /var/www/html"
2025-01-06 16:33:07 +00:00
// Configure tool-specific properties.
2025-01-30 03:42:52 +00:00
"customizations": {
"vscode": {
"extensions": [
"lkrms.pretty-php"
]
}
},
2025-01-06 16:33:07 +00:00
2025-01-06 19:51:31 +00:00
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
2025-01-06 16:33:07 +00:00
}