-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
30 lines (30 loc) · 937 Bytes
/
.devcontainer.json
File metadata and controls
30 lines (30 loc) · 937 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
{
"name": "cesm container",
"image": "ghcr.io/netbeheer-nederland/env:latest",
"features": {
"ghcr.io/devcontainers/features/node:1": {}
},
"remoteUser": "devuser",
"postCreateCommand": "pip install -e '.[dev,docs]' && npm install -g @antora/cli @antora/site-generator-default",
"postStartCommand": "pip install -e '.[dev,docs]'",
"customizations": {
"vscode": {
"extensions": [
"asciidoctor.asciidoctor-vscode",
"hediet.vscode-drawio"
],
"settings": {
"git.defaultCloneDirectory": "/workspaces/",
"asciidoc.extensions.enableKroki": true,
"asciidoc.preview.asciidoctorAttributes": {
"imagesdir": "../images/",
"page-pagination": "",
"experimental": "",
"kroki-fetch-diagram": false,
"kroki-default-format": "svg@",
"kroki-server-url": "http://fruit.ritger.nl:9000"
}
}
}
}
}