forked from wei/pull
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
39 lines (35 loc) · 944 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
39 lines (35 loc) · 944 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
39
{
"name": "[Pull App] Base Dev Environment",
"dockerComposeFile": [
"docker-compose.yml"
],
"service": "dev",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"customizations": {
"vscode": {
"extensions": [
"github.copilot",
"denoland.vscode-deno",
"mongodb.mongodb-vscode"
]
}
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {
"installDirectlyFromGitHubRelease": true,
"version": "latest"
},
"ghcr.io/jckimble/devcontainer-features/ngrok:3": {
"version": "stable"
}
},
"forwardPorts": [
"app:3000",
"mongodb:27017",
"redis:6379"
],
"postStartCommand": {
"git-config": "git config --global --add safe.directory /workspaces/${localWorkspaceFolderBasename}; git config --global core.autocrlf true; git config --global core.editor nano",
"deno-hooks": "deno task install-hooks"
}
}