-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
22 lines (22 loc) · 987 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
22 lines (22 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
{
"name": "v9fs-dev",
"dockerComposeFile": "docker-compose.yml",
"service": "v9fs-dev",
"workspaceFolder": "/home/vscode",
"remoteUser": "vscode",
"containerUser": "vscode",
"customizations": {
"vscode": {
"extensions": ["jvalecillos.gpg","ms-vscode.cpptools","dendron.dendron","GitHub.vscode-pull-request-github","eamodio.gitlens"]
}
},
"mounts": [
"source=${localEnv:HOME},target=/home/user,type=bind,consistency=default",
"source=${localEnv:HOME}/images,target=/boot,type=bind,consistency=default",
"source=${localEnv:HOME}/Documents/Journals,target=/home/vscode/Journals,type=bind,consistency=default",
"source=${localEnv:HOME}/.mutt,target=/home/vscode/.mutt,type=bind,consistency=default",
"source=${localEnv:HOME}/.muttrc,target=/home/vscode/.muttrc,type=bind,consistency=default",
]
}