master
pipistrello 2025-02-18 23:23:40 +03:00
parent 5ddec70043
commit 93268a762f
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
services:
ss-client:
image: mritd/shadowsocks
container_name: ss-client
command: [
"ss-local",
"-s", "${OUTLINE_SERVER_IP}",
"-p", "${OUTLINE_SERVER_PORT}",
"-k", "${OUTLINE_SERVER_ACCESS_KEY}",
"-l", "1080",
"-m", "chacha20-ietf-poly1305"
]
volumes:
- /mnt/containers/shadowproxy/ss-client:/etc/shadowsocks:Z
restart: unless-stopped
socks-proxy:
image: xkuma/dante
container_name: socks-proxy
ports:
- "1080:1080"
volumes:
- /mnt/containers/shadowproxy/dante:/etc/dante:Z
restart: unless-stopped