Files
windwiderstand/docker-compose.prod.yml
T
Peter Meier 4dd17b7ac4
Deploy / verify (push) Successful in 57s
Deploy / deploy (push) Successful in 56s
fix(docker): add healthcheck and stop grace period
Watchtower waits for container to be healthy before stopping the old
one. Grace period allows in-flight requests to drain on shutdown.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-11 14:06:46 +02:00

22 lines
395 B
YAML

services:
windwiderstand:
image: git.pm86.de/admin/windwiderstand:latest
container_name: windwiderstand
restart: unless-stopped
expose:
- "3001"
env_file: /opt/windwiderstand/.env
volumes:
- image-cache:/data/image-cache
networks:
- web
stop_grace_period: 30s
volumes:
image-cache:
networks:
web:
external: true
name: stacks_web