-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevcontainer.json
More file actions
31 lines (31 loc) · 868 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
31 lines (31 loc) · 868 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
{
"name": "holo",
"image": "mcr.microsoft.com/devcontainers/typescript-node:20",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"moby": true
}
},
"forwardPorts": [3000, 8080, 5436, 6382],
"portsAttributes": {
"3000": { "label": "web (Next.js)" },
"8080": { "label": "gateway (MCP + REST)" },
"5436": { "label": "postgres" },
"6382": { "label": "redis" }
},
"postCreateCommand": "corepack enable && corepack prepare pnpm@9.12.0 --activate && pnpm install && pnpm bootstrap",
"postAttachCommand": {
"info": "echo 'holo dev container ready. Run: pnpm dev'"
},
"remoteUser": "node",
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss"
]
}
}
}