-
Notifications
You must be signed in to change notification settings - Fork 906
Expand file tree
/
Copy pathdevcontainer.json
More file actions
151 lines (149 loc) · 5.42 KB
/
devcontainer.json
File metadata and controls
151 lines (149 loc) · 5.42 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"build": {
"dockerfile": "./Dockerfile",
"context": "."
},
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"username": "codespace",
"userUid": "1000",
"userGid": "1000"
},
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "10.0",
"dotnetRuntimeVersions": "9.0",
"aspNetCoreRuntimeVersions": "9.0"
},
"ghcr.io/devcontainers/features/hugo:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "24",
"additionalVersions": "22"
},
"./local-features/nvs": "latest",
"ghcr.io/devcontainers/features/python:1": {
"version": "3.14.2",
"additionalVersions": "3.13.8",
"installJupyterlab": "true",
"configureJupyterlabAllowOrigin": "*",
"useOryxIfAvailable": "false"
},
"ghcr.io/devcontainers/features/php:1": {
"version": "8.5.0",
"additionalVersions": "8.4.15",
"installComposer": "true"
},
"ghcr.io/devcontainers/features/conda:2": {
"version": "latest"
},
"ghcr.io/devcontainers/features/ruby:1": {
"version": "3.4.9",
"additionalVersions": "3.3.11"
},
"ghcr.io/devcontainers/features/java:1": {
"version": "25",
"additionalVersions": "21",
"installGradle": "true",
"installMaven": "true"
},
"ghcr.io/devcontainers/features/sshd:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "latest",
"ppa": "false"
},
"ghcr.io/devcontainers/features/git-lfs:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/copilot-cli:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest"
},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/go:1": {
"version": "latest"
},
"./local-features/jekyll": "latest",
"ghcr.io/devcontainers/features/oryx:2": "latest",
"./local-features/setup-user": "latest",
"./local-features/patch-conda": {},
"./local-features/patch-python": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/devcontainers/features/git",
"ghcr.io/devcontainers/features/dotnet",
"ghcr.io/devcontainers/features/hugo",
"ghcr.io/devcontainers/features/node",
"./local-features/nvs",
"ghcr.io/devcontainers/features/conda",
"./local-features/patch-conda",
"ghcr.io/devcontainers/features/python",
"./local-features/patch-python",
"ghcr.io/devcontainers/features/php",
"ghcr.io/devcontainers/features/ruby",
"ghcr.io/devcontainers/features/java",
"ghcr.io/devcontainers/features/sshd",
"ghcr.io/devcontainers/features/git-lfs",
"ghcr.io/devcontainers/features/github-cli",
"ghcr.io/devcontainers/features/docker-in-docker",
"ghcr.io/devcontainers/features/kubectl-helm-minikube",
"ghcr.io/devcontainers/features/go",
"./local-features/jekyll",
"ghcr.io/devcontainers/features/oryx",
"./local-features/setup-user"
],
"remoteUser": "codespace",
"containerUser": "codespace",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go",
"python.defaultInterpreterPath": "/home/codespace/.python/current/bin/python3",
"jupyter.kernels.filter": [
{
"path": "/opt/conda/bin/python",
"type": "pythonEnvironment"
},
{
"path": "/usr/local/python/current/bin/python3",
"type": "pythonEnvironment"
},
{
"path": "/usr/local/python/current/bin/python",
"type": "pythonEnvironment"
},
{
"path": "/usr/bin/python3",
"type": "pythonEnvironment"
},
{
"path": "/bin/python3",
"type": "pythonEnvironment"
}
],
"lldb.executable": "/usr/bin/lldb"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"GitHub.vscode-pull-request-github"
]
}
}
}