34 lines
731 B
YAML
Executable File
34 lines
731 B
YAML
Executable File
version: "3.8"
|
|
services:
|
|
web:
|
|
build: .
|
|
image: digi-server:latest
|
|
ports:
|
|
- "80:5000"
|
|
environment:
|
|
- FLASK_APP
|
|
- FLASK_RUN_HOST
|
|
- ADMIN_USER
|
|
- ADMIN_PASSWORD
|
|
- SECRET_KEY
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- /home/pi/Desktop/digi-server/instance:/app/instance
|
|
- /home/pi/Desktop/digi-server/uploads:/app/static/uploads
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 512M
|
|
cpus: '1.0'
|
|
reservations:
|
|
memory: 128M
|
|
cpus: '0.25'
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:5000/"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|