Files
py-dvt-ate/deploy/docker-compose.yml
Kai Chappell 885196d933
All checks were successful
CI / Lint (push) Successful in 4s
CI / Type Check (push) Successful in 20s
CI / Test (push) Successful in 57s
CI / Release (push) Has been skipped
refactor(deploy): remove per-app tunnel in favour of central cloudflared
Routing now handled by central cloudflared + NPM on public-network.
2026-02-03 23:43:29 +00:00

20 lines
402 B
YAML

services:
streamlit:
build:
context: ..
dockerfile: Dockerfile
container_name: py-dvt-ate-streamlit
restart: unless-stopped
environment:
- IDLE_PAUSE_SECONDS=${IDLE_PAUSE_SECONDS:-30} # Pause physics after 30s idle
expose:
- "8080"
volumes:
- ./data:/app/data
networks:
- public-network
networks:
public-network:
external: true