-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevcontainer.json
More file actions
41 lines (40 loc) · 1.11 KB
/
devcontainer.json
File metadata and controls
41 lines (40 loc) · 1.11 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
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.224.2/containers/jekyll
{
"name": "dstack-python-sdk",
"dockerComposeFile": ["docker-compose.yml"],
"service": "pythonsdkdemo",
"workspaceFolder": "/usr/share/rtldev-middleware-python-sdk/",
"shutdownAction": "stopCompose",
"customizations": {
"vscode": {
"extensions": [
"GitHub.vscode-pull-request-github",
"ms-vscode-remote.remote-containers",
"mrmlnc.vscode-apache",
"ms-azuretools.vscode-docker",
"eamodio.gitlens",
"GitHub.copilot",
"bmewburn.vscode-intelephense-client"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/bin/zsh"
}
}
}
}
},
"remoteUser": "vscode",
"mounts": [
"source=${localEnv:HOME}${localEnv:USERPROFILE},target=/WSL_USER,type=bind,consistency=cached"
],
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "latest"
}
},
"postCreateCommand": "zsh /post-create.sh"
}