-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
36 lines (35 loc) · 1.12 KB
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "PHP - Apache",
"image": "ghcr.io/ld-web/php-apache:latest",
"postStartCommand": "service apache2 start",
"mounts": [
"source=${localWorkspaceFolder},target=/var/www/html,type=bind,consistency=cached"
],
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
},
"extensions": [
"eamodio.gitlens",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
"adpyke.codesnap",
"mrmlnc.vscode-duplicate",
"oderwat.indent-rainbow",
"PKief.material-icon-theme",
"xdebug.php-debug",
"neilbrayfield.php-docblocker",
"phproberto.vscode-php-getters-setters",
"bmewburn.vscode-intelephense-client",
"JakeWilson.vscode-placeholder-images",
"esbenp.prettier-vscode",
"helixquar.randomeverything",
"mtxr.sqltools-driver-mysql",
"TabNine.tabnine-vscode",
"bradlc.vscode-tailwindcss",
"narsenico.vscode-progressive-increment"
]
}
}
}