-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdevcontainer.json
More file actions
49 lines (49 loc) · 1.27 KB
/
devcontainer.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "rust-algos",
"build": {
"dockerfile": "Dockerfile",
"context": "."
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined",
"--network=host",
"--privileged",
"--init"
],
// Set *default* container specific settings.json values on container create.
"settings": {
"lldb.executable": "/usr/bin/lldb",
// VS Code don't watch files under ./target
"files.watcherExclude": {
"**/target/**": true
}
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"moby": true,
"dockerDashComposeVersion": "v1",
"installDockerBuildx": true
},
"ghcr.io/devcontainers/features/rust:1": {
"version": "latest",
"profile": "minimal"
},
"ghcr.io/devcontainers/features/sshd:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"tamasfe.even-better-toml",
"matklad.rust-analyzer",
"ms-azuretools.vscode-docker",
"mutantdino.resourcemonitor",
"vadimcn.vscode-lldb",
"visualstudioexptteam.vscodeintellicode",
],
"userEnvProbe": "loginInteractiveShell",
}