mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
- Add SAP-accuracy sample for uprn_10093116543 (epc.json, elmhurst_inputs.md, summary/worksheet PDFs) - Persist hyde viewer stack (xvfb/fluxbox/x11vnc/novnc/websockify) and Playwright chromium in the backend devcontainer; forward noVNC 6080 - Broaden .claude/settings.local.json allowlist (display/python/grep/tail) - In-progress campaign mapper/cert_to_inputs work carried from prior cert Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
26 lines
739 B
YAML
26 lines
739 B
YAML
version: '3.8'
|
|
# Unique Compose project name (see backend/docker-compose.yml) so this repo's
|
|
# devcontainer doesn't collide with other model-* clones.
|
|
name: model-asset-list
|
|
|
|
services:
|
|
model-sal:
|
|
build:
|
|
context: ../..
|
|
dockerfile: .devcontainer/asset_list/Dockerfile
|
|
command: code-server --bind-addr 0.0.0.0:8080
|
|
user: vscode
|
|
volumes:
|
|
- ../../:/workspaces/model
|
|
networks:
|
|
- model-net
|
|
ports:
|
|
# 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 (in devcontainer.json) forwards container :8080 to your machine.
|
|
- "8080"
|
|
|
|
networks:
|
|
model-net:
|
|
driver: bridge
|
|
|