-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdevcontainer.json
More file actions
38 lines (38 loc) · 1007 Bytes
/
devcontainer.json
File metadata and controls
38 lines (38 loc) · 1007 Bytes
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
{
"name": "Ubuntu",
"image": "mcr.microsoft.com/devcontainers/base:jammy",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers-contrib/features/npm-package:1": {},
"ghcr.io/wxw-matt/devcontainer-features/command_runner:0": {},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers-contrib/features/bash-command:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"forwardPorts": [
3007,
4000,
3006,
8080
],
"onCreateCommand": {
"add_prepare_command": ["chmod", "+x", ".devcontainer/prepare-codespace.sh"],
"prepare": [".devcontainer/prepare-codespace.sh"]
},
"postStartCommand": {
"add_prepare_command": ["chmod", "+x", ".devcontainer/start-codespace.sh"],
"prepare": [".devcontainer/start-codespace.sh"]
},
"portsAttributes": {
"3006": {
"label": "Deep.Links"
},
"3007": {
"label": "Deep.Case"
},
"8080": {
"label": "Hasura"
}
}
}