-
Notifications
You must be signed in to change notification settings - Fork 2
/
.devcontainer.json
37 lines (37 loc) · 984 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
37
{
"name": "world",
"image": "ghcr.io/whilp/world:latest",
"remoteUser": "user",
"runArgs": [
"--privileged",
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"postCreateCommand": "/usr/local/bin/post.sh",
"extensions": [
"bierner.docs-view",
"bierner.emojisense",
"bierner.markdown-mermaid",
"bierner.markdown-preview-github-styles",
"dbaeumer.vscode-eslint",
"eamodio.gitlens-insiders",
"esbenp.prettier-vscode",
"foxundermoon.shell-format",
"github.vscode-pull-request-github",
"golang.go-nightly",
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-python.vscode-pylance",
"redhat.vscode-yaml",
"stackbuild.bazel-stack-vscode",
"timonwong.shellcheck",
"visualstudioexptteam.vscodeintellicode"
],
"mounts": [
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
}
}