Spaces:
Running
Running
File size: 427 Bytes
c6c1596 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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
|