-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
52 lines (51 loc) · 1.56 KB
/
Copy pathdevcontainer.json
File metadata and controls
52 lines (51 loc) · 1.56 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
50
51
52
{
"name": "Candoumbe.Pipelines",
"image": "mcr.microsoft.com/devcontainers/dotnet:10.0",
"features": {
"ghcr.io/devcontainers-extra/features/gh-cli:1": {},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/copilot-cli": {},
"ghcr.io/devcontainers/features/docker-in-docker:4": {
"moby": true,
"dockerDashComposeVersion": "v2"
},
"ghcr.io/nils-geistmann/devcontainers-features/zsh": {
"plugins": "git npm gh"
},
"ghcr.io/devcontainers/features/dotnet": {
"version": "10.0.301"
},
"ghcr.io/devcontainers/features/node": {
"version": "24"
}
},
"runArgs": [
"--userns=keep-id",
"--env-file", "${localWorkspaceFolder}/.devcontainer/.env"
],
"containerUser": "vscode",
"updateRemoteUserUID": true,
"customizations": {
"vscode": {
"extensions": [
"ms-dotnettools.csdevkit",
"ms-dotnettools.csharp",
"editorconfig.editorconfig",
"GitHub.copilot",
"ms-vscode.vs-keybindings",
"zaaack.markdown-editor"
],
"settings": {
"dotnet.defaultSolution": "Candoumbe.Pipelines.sln",
"dev.containers.dockerPath": "podman",
"chat.tools.compressOutput.enabled": true,
"chat.tools.riskAssessment.enabled":true,
"chat.permissions.default": "autoApprove"
}
}
},
"postCreateCommand": "zsh .devcontainer/scripts/post-create.sh",
"postStartCommand": "zsh .devcontainer/scripts/post-start.sh",
"remoteUser": "vscode"
}