15 lines
314 B
Plaintext
15 lines
314 B
Plaintext
|
# {{ ansible_managed }}
|
||
|
version: "3"
|
||
|
services:
|
||
|
socks5:
|
||
|
image: serjs/go-socks5-proxy
|
||
|
container_name: socks5
|
||
|
security_opt:
|
||
|
- no-new-privileges
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Asia/Singapore
|
||
|
- PROXY_PORT=8870
|
||
|
restart: unless-stopped
|
||
|
network_mode: host
|