File size: 486 Bytes
2439ccf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | services:
app:
build: .
container_name: crcc-intelligence-hub
restart: unless-stopped
ports:
- "8501:8501"
volumes:
- ./data:/data
- ./attachments:/data/attachments
env_file:
- .env
environment:
- DATABASE_PATH=/data/construction_hub.db
- ATTACHMENTS_DIR=/data/attachments
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8501/_stcore/health"]
interval: 30s
timeout: 10s
retries: 3
|