dynamic file tree

This commit is contained in:
Jun-te Kim 2026-06-08 14:08:48 +00:00
parent 974a5e5ef5
commit e974aef858
2 changed files with 8 additions and 4 deletions

View file

@ -14,8 +14,7 @@
// the mounted host ~/.config/gh.
"postCreateCommand": "gh repo clone Hestia-Homes/agentic-toolkit /tmp/agentic-toolkit -- --branch 0.0.5 --depth 1 && bash /tmp/agentic-toolkit/setup.sh && npm install",
"forwardPorts": [3000],
"appPort": ["3000:3000"],
"forwardPorts": ["frontend:3000", "pgadmin:80"],
"mounts": [
// Optional, just makes getting from Downloads (local env) easier

View file

@ -9,7 +9,10 @@ services:
USER_GID: ${GID:-1000}
command: sleep infinity
ports:
- "3000:3000"
# Host port left unspecified so Docker assigns a free one — lets multiple
# worktrees of this repo run at once without colliding. VS Code's
# forwardPorts (below) forwards container :3000 to your machine.
- "3000"
volumes:
- ..:/workspaces/assessment-model
- ~/.gitconfig:/home/vscode/.gitconfig
@ -29,7 +32,9 @@ services:
image: dpage/pgadmin4
hostname: pgadmin
ports:
- 5556:80
# Dynamic host port (see frontend above). VS Code auto-detects and
# forwards the listening container port when the container comes up.
- "80"
env_file:
- ../.db-env
restart: unless-stopped