-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathdevcontainer.json
More file actions
95 lines (95 loc) · 3.08 KB
/
Copy pathdevcontainer.json
File metadata and controls
95 lines (95 loc) · 3.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "${localWorkspaceFolderBasename}",
"build": {
"dockerfile": "Dockerfile"
},
"mounts": [
{
"type": "volume",
"source": "${localWorkspaceFolderBasename}-data",
"target": "/home/vscode/.data"
},
{
"type": "volume",
"source": "${localWorkspaceFolderBasename}-microsoft",
"target": "/home/vscode/.microsoft"
}
],
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true
},
"ghcr.io/devcontainers/features/node:1": {},
"./features/claude": {},
"./features/opencode": {},
"./features/pi": {},
"./features/codex": {},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.12"
},
"ghcr.io/devcontainers/features/docker-in-docker:2.16": {
"version": "29.4.1",
"moby": false
}
},
"containerEnv": {
"NODE_EXTRA_CA_CERTS": "/etc/ssl/certs/ca-certificates.crt",
"REQUESTS_CA_BUNDLE": "/etc/ssl/certs/ca-certificates.crt",
"PIP_CERT": "/etc/ssl/certs/ca-certificates.crt",
"SSL_CERT_FILE": "/etc/ssl/certs/ca-certificates.crt"
},
"remoteEnv": {
"LANG": "C.UTF-8",
"LC_ALL": "C.UTF-8",
"TERM": "xterm-256color"
},
"runArgs": [
"--name",
"${localWorkspaceFolderBasename}",
"--hostname",
"${localWorkspaceFolderBasename}",
"--env-file",
".devcontainer/devcontainer.env",
"--env",
"SSH_AUTH_SOCK=/run/host-services/ssh-auth.sock"
],
"initializeCommand": [
".devcontainer/init"
],
"postCreateCommand": "bash -l .devcontainer/postcreate.sh",
"postStartCommand": "bash -l .devcontainer/poststart.sh",
"customizations": {
"vscode": {
"extensions": [
"anthropic.claude-code",
"ms-dotnettools.csdevkit",
"ms-azuretools.vscode-docker",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"angular.ng-template",
"continue.continue",
"microsoft-aspire.aspire-vscode",
"pflannery.vscode-versionlens"
],
"settings": {
"chat.disableAIFeatures": true,
"editor.formatOnSave": true,
"files.insertFinalNewline": true,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"npm.packageManager": "npm",
"dotnet.defaultSolution": "GHOSTS.sln",
"remote.portsAttributes": {
"11434": {
"label": "ollama (host — do not forward)",
"onAutoForward": "ignore"
},
"11435": {
"label": "ollama (host — do not forward)",
"onAutoForward": "ignore"
}
}
}
}
}
}