forked from arxanas/git-branchless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
42 lines (39 loc) · 1.24 KB
/
Copy pathdevcontainer.json
File metadata and controls
42 lines (39 loc) · 1.24 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
{
"name": "git-branchless",
"build": {
"dockerfile": "Dockerfile"
},
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/rust:1": {
"version": "1.81",
"profile": "default"
},
"ghcr.io/devcontainers/features/git:1": {
"ppa": true,
"version": "2.37.3"
},
"ghcr.io/devcontainers/features/nix:1": {
"multiUser": false,
"version": "2.24"
}
},
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"ms-vscode.vscode-json",
"ms-vscode.vscode-markdown"
],
"settings": {
"terminal.integrated.shellIntegration.enabled": true
}
}
},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "vscode"
}