-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (32 loc) · 927 Bytes
/
devcontainer.json
File metadata and controls
32 lines (32 loc) · 927 Bytes
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
{
"name": "PHP",
"image": "mcr.microsoft.com/devcontainers/php:2-8.4-bullseye",
"forwardPorts": [
8080,
8081
],
"customizations": {
"vscode": {
"extensions": [
"stylelint.vscode-stylelint",
"jetmartin.bats",
"ms-azuretools.vscode-containers",
"github.vscode-github-actions",
"ms-vscode-remote.remote-containers",
"DEVSENSE.phptools-vscode",
"redhat.vscode-yaml",
"timonwong.shellcheck"
]
}
},
"postStartCommand": ".devcontainer/postCreateCommands.sh",
"features": {
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/szkiba/devcontainer-features/bats:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/wxw-matt/devcontainer-features/apt:latest": {
"packages": "bash-completion vim iputils-ping telnet"
}
}
}