2024-11-04 15:48:24 -05:00
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
services:
|
|
|
|
web:
|
2024-11-05 19:25:52 -05:00
|
|
|
image: git.dws.rip/dws/spectra:main
|
2024-11-04 15:48:24 -05:00
|
|
|
volumes:
|
|
|
|
- ./uploads:/app/uploads
|
|
|
|
- ./thumbnails:/app/thumbnails
|
|
|
|
- ./config.toml:/app/config.toml
|
|
|
|
- ./photos.db:/app/photos.db
|
2024-11-05 19:25:52 -05:00
|
|
|
- ./static:/app/static
|
2024-11-04 15:48:24 -05:00
|
|
|
environment:
|
|
|
|
- PYTHONUNBUFFERED=1
|
|
|
|
- FLASK_ENV=production
|
|
|
|
- WORKERS=4
|
|
|
|
restart: unless-stopped
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "curl", "-f", "http://localhost:5000/"]
|
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 3
|
2024-11-05 19:25:52 -05:00
|
|
|
start_period: 40s
|