-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevcontainer.json
executable file
·44 lines (44 loc) · 1.23 KB
/
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
37
38
39
40
41
42
43
44
{
"build": {
"args": {
"EMAIL": "[email protected]",
"NAME": "Patrick",
"USERNAME": "murdoc"
},
"dockerfile": "./Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"yzhang.markdown-all-in-one",
"streetsidesoftware.code-spell-checker",
"DavidAnson.vscode-markdownlint",
"shd101wyy.markdown-preview-enhanced",
"bierner.github-markdown-preview",
"alefragnani.bookmarks",
"eamodio.gitlens",
"mhutchie.git-graph",
"christian-kohler.path-intellisense",
"mohsen1.prettify-json",
"gruntfuggly.todo-tree",
"redhat.vscode-yaml",
"ms-azuretools.vscode-docker",
"ansible.ansible-language-server",
"excalidraw.excalidraw-vscode",
"gera2ld.markmap-vscode"
],
"settings": {
"excalidraw.theme": "dark",
"redhat.telemetry.enabled": false,
"terminal.integrated.shell.linux": "/bin/zsh",
"workbench.colorTheme": "Catppuccin.catppuccin-vsc"
}
}
},
"mounts": [
"source=projectname-zshhistory,target=/commandhistory,type=volume"
],
"name": "base",
"postCreateCommand": ".devcontainer/post-exec.sh",
"remoteUser": "murdoc"
}