Skip to content

Commit

Permalink
chore: add socket-proxy for watchtower
Browse files Browse the repository at this point in the history
  • Loading branch information
l4rm4nd committed Feb 19, 2025
1 parent 70c24a7 commit dff3831
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions examples/watchtower/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:

watchtower:
image: containrrr/watchtower:latest
image: containrrr/watchtower:latest
container_name: watchtower
hostname: watchtower
environment:
Expand All @@ -16,11 +16,38 @@ services:
#- WATCHTOWER_MONITOR_ONLY=true
- WATCHTOWER_SCHEDULE=0 0 6 * * * # requires a go cron syntax of 6 space-separated fields; see https://containrrr.dev/watchtower/arguments/#scheduling
- WATCHTOWER_CLEANUP=true # remove unused images afterwards
- DOCKER_HOST=tcp://socket-proxy:2375 # use socket-proxy for secure docker api access
restart: always
network_mode: "host"
networks:
- watchtower
- proxynet
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
working_dir: /
labels:
com.centurylinklabs.watchtower: true
com.centurylinklabs.watchtower: true

socket-proxy:
image: lscr.io/linuxserver/socket-proxy:1.26.2
container_name: socket-proxy-watchtower
environment:
- ALLOW_START=1
- ALLOW_STOP=1
- ALLOW_RESTARTS=1
- CONTAINERS=1
- IMAGES=1
- NETWORKS=1
- POST=1
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- proxynet
restart: always
read_only: true
tmpfs:
- /run

networks:
proxynet:
internal: true
watchtower:

0 comments on commit dff3831

Please sign in to comment.