diff --git a/watchtower/docker-compse.yml b/watchtower/docker-compse.yml new file mode 100644 index 0000000..b0bc460 --- /dev/null +++ b/watchtower/docker-compse.yml @@ -0,0 +1,25 @@ +services: + watchtower: + image: containrrr/watchtower:latest + container_name: WATCHTOWER + hostname: watchtower + mem_limit: 512m + mem_reservation: 128m + cpu_shares: 512 + security_opt: + - no-new-privileges=true + read_only: true + volumes: + - /var/run/docker.sock:/var/run/docker.sock:ro + environment: + TZ: Europe/Berlin + WATCHTOWER_CLEANUP: true # Remove old images after updating + WATCHTOWER_REMOVE_VOLUMES: false # Remove attached volumes after updating + DOCKER_API_VERSION: 1.41 # SSH docker version 1.41 for Docker engine version 20.10 - 1.43 for Docker engine version 24 + WATCHTOWER_INCLUDE_RESTARTING: true # Restart containers after update + WATCHTOWER_INCLUDE_STOPPED: false # Update stopped containers + WATCHTOWER_SCHEDULE: "0 0 */1 * * *" # Update & Scan containers every 1 hours + WATCHTOWER_LABEL_ENABLE: false + WATCHTOWER_ROLLING_RESTART: true + WATCHTOWER_TIMEOUT: 30s + restart: on-failure:5 \ No newline at end of file