mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
dynamic file tree
This commit is contained in:
parent
974a5e5ef5
commit
e974aef858
2 changed files with 8 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue