Files
PDFtemplateGenerator/docker-compose.yml
2024-10-26 14:27:09 +02:00

14 lines
361 B
YAML

services:
web:
pull_policy: build
restart: unless-stopped
build:
context: app
# flask requires SIGINT to stop gracefully
# (default stop signal from Compose is SIGTERM)
stop_signal: SIGINT
ports:
- 5000:8000
labels:
traefik.enable: true
traefik.http.routers.templatepdf.rule: Host(`template.ar2000.me`)