Files
php/.devcontainer/devcontainer.json

15 lines
365 B
JSON
Raw Normal View History

2019-05-01 07:53:21 -07:00
{
"name": "PHP",
"dockerFile": "Dockerfile",
"extensions": [
"felixfbecker.php-debug",
"felixfbecker.php-intellisense"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
2019-08-06 02:00:41 +00:00
},
// Comment out the next line to run as root instead. Linux users,
// update Dockerfile with your user's UID/GID if not 1000.
"runArgs": [ "-u", "vscode" ]
2019-05-01 07:53:21 -07:00
}