towards healthchecks for all containers

This commit is contained in:
2026-02-04 18:11:49 +01:00
parent 7f45788b3d
commit ab2f707706
42 changed files with 245 additions and 19 deletions

View File

@@ -1,8 +1,13 @@
services:
socks:
container_name: socks
image: serjs/go-socks5-proxy
image: serjs/go-socks5-proxy:v0.0.4
ports:
- 1081:1080
network_mode: service:surfshark
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "nc -z localhost 1080 || exit 1"]
interval: 30s
timeout: 5s
retries: 3