-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathdevcontainer.json
More file actions
24 lines (24 loc) · 715 Bytes
/
devcontainer.json
File metadata and controls
24 lines (24 loc) · 715 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
{
"name": "DevDocs Dev Container",
"build": {
"context": "../",
"dockerfile": "../Dockerfile",
"target": "devdocs-dev"
},
"customizations": {
"vscode": {
"extensions": [
"streetsidesoftware.code-spell-checker",
"mhutchie.git-graph",
"github.vscode-github-actions",
"ms-azuretools.vscode-docker",
"EditorConfig.EditorConfig"
]
}
},
"mounts": [
{"source":"/var/run/docker.sock","target":"/var/run/docker.sock","type": "bind"},
{"source": "devdocs-downloaded","target": "/devdocs/public/docs","type": "volume"}
],
"appPort": 9292
}