-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
52 lines (52 loc) · 1.35 KB
/
devcontainer.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.191.1/containers/debian
{
"name": "evoland-devcontainer",
"build": {
"dockerfile": "Dockerfile",
"context": "..",
"args": {
"platform": "linux/amd64"
}
},
"mounts": [
{
"source": "${localEnv:EVOLAND_DATA_BASEPATH}",
"target": "/mnt/evoland-data",
"type": "bind"
},
{
"source": "${localEnv:EVOLAND_CALIBRATION_DIR}",
"target": "/mnt/calibration",
"type": "bind"
},
{
"source": "${localEnv:EVOLAND_SIMULATION_DIR}",
"target": "/mnt/simulation",
"type": "bind"
}
],
"containerEnv": {
"EVOLAND_DATA_BASEPATH": "/mnt/evoland-data",
"EVOLAND_CALIBRATION_DIR": "/mnt/calibration",
"EVOLAND_SIMULATION_DIR": "/mnt/simulation"
},
"customizations": {
"vscode": {
"settings": {
"git.path": "/usr/bin/git",
"r.rterm.linux": "/usr/local/bin/radian",
"shellcheck.executablePath": "/usr/bin/shellcheck",
"r.plot.useHttpgd": true,
"r.bracketedPaste": true,
"rewrap.wrappingColumn": 88
},
"extensions": [
"RDebugger.r-debugger",
"REditorSupport.r",
"quarto.quarto",
"timonwong.shellcheck"
]
}
}
}