-
-
Notifications
You must be signed in to change notification settings - Fork 508
Expand file tree
/
Copy pathdevcontainer.json
More file actions
57 lines (57 loc) · 1.68 KB
/
devcontainer.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"name": "Exceptionless Aspire Dev Container",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"remoteEnv": {
"PATH": "${containerEnv:PATH}:/home/vscode/.aspire/bin",
"SSL_CERT_DIR": "/home/vscode/.aspnet/dev-certs/trust:/etc/ssl/certs"
},
"customizations": {
"vscode": {
"extensions": [
"microsoft-aspire.aspire-vscode",
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"ms-azuretools.vscode-docker",
"tintoy.msbuild-project-tools",
"streetsidesoftware.code-spell-checker",
"humao.rest-client"
]
}
},
"forwardPorts": [5003, 5100, 5173, 5200, 5201, 5601, 6379, 8025, 9200],
"portsAttributes": {
"7049": {
"protocol": "https"
},
"5100": {
"protocol": "https"
}
},
"hostRequirements": {
"cpus": 4,
"memory": "16gb",
"storage": "32gb"
},
"postCreateCommand": "bash .devcontainer/postCreateCommand.sh",
"features": {
"ghcr.io/devcontainers/features/powershell:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "10.0"
},
"ghcr.io/devcontainers/features/node:1": {
"nodeGypDependencies": true,
"version": "lts"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"enableNonRootDocker": true,
"moby": true
}
}
}