decidron-simulator / docker-compose.yml
NeonClary
Add Decidron network simulator
808ab9a
Raw
History Blame Contribute Delete
427 Bytes
services:
app:
build: .
ports:
# Container always listens on 7860 (matches HuggingFace Space
# app_port). Host port is overridable via CCAI_HOST_PORT in .env
# or the environment so local devs can sidestep port conflicts.
- "${CCAI_HOST_PORT:-7860}:7860"
env_file:
- .env
environment:
CORS_ORIGINS: "http://localhost:7860,http://localhost:3000"
restart: unless-stopped