Files
php/.devcontainer/devcontainer.json

25 lines
434 B
JSON

{
"name": "PHP",
"image": "mcr.microsoft.com/devcontainers/php:1-8.3",
"forwardPorts": [
8000
],
"containerEnv": {
"NODE_ENV": "development"
},
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"streetsidesoftware.code-spell-checker"
]
}
},
"portsAttributes": {
"8000": {
"label": "Hello Remote World",
"onAutoForward": "notify"
}
},
"postAttachCommand": "php -S 0.0.0.0:8000"
}