Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# socket-proxy

## Latest image
- `wollomatic/socket-proxy:1.11.2` / `ghcr.io/wollomatic/socket-proxy:1.11.2`
- `wollomatic/socket-proxy:1.11.3` / `ghcr.io/wollomatic/socket-proxy:1.11.3`
- `wollomatic/socket-proxy:1` / `ghcr.io/wollomatic/socket-proxy:1`

> [!IMPORTANT]
Expand Down
2 changes: 1 addition & 1 deletion examples/docker-compose/dozzle/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
- docker-proxynet

dozzle:
image: amir20/dozzle:v8.14 # make sure you use the most recent version
image: amir20/dozzle:v10.0 # make sure you use the most recent version
user: 65534:65534
read_only: true
mem_limit: 256M
Expand Down
6 changes: 5 additions & 1 deletion examples/docker-compose/watchtower/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ services:
- '-allowGET=/v1\..{2}/(containers/.*|images/.*)'
- '-allowPOST=/v1\..{2}/(containers/.*|images/.*|networks/.*)'
- '-allowDELETE=/v1\..{2}/(containers/.*|images/.*)'
- '-allowHEAD=/_ping'
# check socket connection every hour and stop the proxy if it fails (will then be restarted by docker):
- '-watchdoginterval=3600'
- '-stoponwatchdog'
Expand All @@ -29,7 +30,10 @@ services:
- docker-proxynet

watchtower:
image: containrrr/watchtower:1.7.1
# image: containrrr/watchtower:1.7.1
# https://github.com/containrrr/watchtower was archived on December 17, 2025.
# https://github.com/nicholas-fedor/watchtower is a maintained fork.
image: ghcr.io/nicholas-fedor/watchtower:1.14.2 # the containrrr repo is no longer maintained
depends_on:
- dockerproxy
command:
Expand Down