.
Deploy watchtower / deploy (push) Failing after 6s

This commit is contained in:
Mike McFetridge
2026-07-21 17:27:10 -04:00
parent 64a0911d7b
commit 506245e5b6
2 changed files with 32 additions and 12 deletions
Binary file not shown.
+32 -12
View File
@@ -1,15 +1,35 @@
services: services:
sencho: watchtower:
image: saelix/sencho:latest image: containrrr/watchtower
container_name: sencho container_name: watchtower
restart: unless-stopped restart: unless-stopped
ports:
- "1852:1852"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /home/miker/docker/Sencho/data:/app/data
# Change this line so the container path matches the host path:
- /opt/Docker-Deployments:/opt/Docker-Deployments
environment: environment:
- COMPOSE_DIR=/home/miker/docker - DOCKER_API_VERSION=1.44
- DATA_DIR=/app/data - TZ=America/New_York
- PUID:=1000 # Reference PUID from .env
- PGID=1000 # Reference PGID from .env
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_INCLUDE_RESTARTING=true
- WATCHTOWER_ROLLING_RESTARTING=true
- WATCHTOWER_SCHEDULE=0 0 4 * * *
- WATCHTOWER_INCLUDE_STOPPED=true
- WATCHTOWER_NOTIFICATIONS=email
- WATCHTOWER_NOTIFICATIONS_HOSTNAME=Docker-03 # Add Server Name or IP Address
- WATCHTOWER_NOTIFICATION_EMAIL_FROM=miker@mmcfetridge.net
- WATCHTOWER_NOTIFICATION_EMAIL_TO=miker@mmcfetridge.net
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER=mail.mmcfetridge.net
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT=465
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER=miker@mmcfetridge.net
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD=!Sucyetat123
- WATCHTOWER_NOTIFICATION_EMAIL_DELAY=2
security_opt:
- no-new-privileges:true
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
networks:
- external
networks:
external:
external: true # Tells Compose not to create this network.