forked from yax-lakam-tuun/maya-decipherment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
36 lines (36 loc) · 916 Bytes
/
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
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
{
"name": "Maya Hieroglyphs - The History of Decipherment",
"build": {
"dockerfile": "../container/Dockerfile",
"args": {"user_name": "ajtzib"}
},
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"mathematic.vscode-latex",
"James-Yu.latex-workshop",
"valentjn.vscode-ltex",
"ms-vscode.powershell"
],
"settings": {
"terminal.integrated.profiles.linux": {
"PowerShell": {
"path": "pwsh"
},
"bash": {
"path": "bash",
"icon": "terminal-bash"
}
},
"terminal.integrated.defaultProfile.linux": "PowerShell"
}
}
},
"mounts": [
// Use SSH keys from host
{ "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.ssh", "target": "/home/ajtzib/.ssh", "type": "bind" }
],
"containerUser": "ajtzib"
}