feat(container): added socks5 proxy
This commit is contained in:
parent
e514a0fb66
commit
1d7b12af87
1 changed files with 14 additions and 3 deletions
|
@ -25,9 +25,10 @@ services:
|
|||
# https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list
|
||||
- UPDATER_PERIOD=24h
|
||||
ports:
|
||||
- 8888:8888/tcp # HTTP proxy
|
||||
- 8388:8388/tcp # Shadowsocks
|
||||
- 8388:8388/udp # Shadowsocks
|
||||
# - 8888:8888/tcp # HTTP proxy
|
||||
# - 8388:8388/tcp # Shadowsocks
|
||||
# - 8388:8388/udp # Shadowsocks
|
||||
- 1080:1080 # socks5 proxy
|
||||
- 8080:8080/tcp # SABnzbd
|
||||
volumes:
|
||||
- ./volumes/gluetun:/gluetun
|
||||
|
@ -37,6 +38,16 @@ services:
|
|||
- /dev/net/tun:/dev/net/tun
|
||||
restart: unless-stopped
|
||||
|
||||
### Socks5 Proxy for Mullvad Browser
|
||||
socks5:
|
||||
image: serjs/go-socks5-proxy
|
||||
container_name: socks5
|
||||
network_mode: "service:gluetun"
|
||||
depends_on:
|
||||
gluetun:
|
||||
condition: service_healthy
|
||||
restart: unless-stopped
|
||||
|
||||
### Downloader - Usenet
|
||||
sabnzbd:
|
||||
image: linuxserver/sabnzbd:latest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue