-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
49 lines (49 loc) · 1.42 KB
/
devcontainer.json
File metadata and controls
49 lines (49 loc) · 1.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
{
"name": "Python 3.14 Project",
"service": "python",
"remoteUser": "vscode",
"workspaceFolder": "/workspaces",
"dockerComposeFile": "docker-compose.yml",
"mounts": [
"type=bind,source=${localEnv:HOME}${localEnv:USERPROFILE}/.ssh,target=/home/vscode/.ssh,readonly",
"type=bind,source=${localEnv:HOME}${localEnv:USERPROFILE}/.gnupg,target=/home/vscode/.gnupg,readonly"
],
"initializeCommand": "bash .devcontainer/scripts/initialize.sh",
"postCreateCommand": "bash .devcontainer/scripts/post-create.sh",
"postStartCommand": "bash .devcontainer/scripts/post-start.sh",
"features": {
"ghcr.io/devcontainers/features/common-utils:": {
"installZsh": "true",
"username": "vscode",
"userUid": "1000",
"userGid": "1000",
"upgradePackages": "true"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"moby": false
},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.debugpy",
"ms-toolsai.jupyter",
"ms-toolsai.datawrangler",
"ms-vsliveshare.vsliveshare",
"ms-azuretools.vscode-containers",
"GitHub.copilot-chat",
"GitHub.vscode-pull-request-github",
"github.vscode-github-actions",
"GitHub.github-vscode-theme",
"charliermarsh.ruff",
"astral-sh.ty",
"tamasfe.even-better-toml",
"redhat.vscode-yaml",
"esbenp.prettier-vscode",
"eamodio.gitlens"
]
}
}
}