4dd17b7ac4
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>
22 lines
395 B
YAML
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
|