Update docker-compose.yml
Some checks failed
Close inactive issues / close-issues (push) Has been cancelled
Some checks failed
Close inactive issues / close-issues (push) Has been cancelled
This commit is contained in:
@@ -1,41 +1,41 @@
|
||||
version: '3.4'
|
||||
services:
|
||||
vpn:
|
||||
container_name: vpn
|
||||
image: 'dperson/openvpn-client:latest'
|
||||
environment:
|
||||
- 'OTHER_ARGS= --mute-replay-warnings'
|
||||
cap_add:
|
||||
- net_admin
|
||||
- SYS_MODULE
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/vpn:/vpn'
|
||||
- /lib/modules:/lib/modules
|
||||
security_opt:
|
||||
- 'label:disable'
|
||||
devices:
|
||||
- '/dev/net/tun:/dev/net/tun'
|
||||
ports:
|
||||
- '8113:8112' #deluge web UI Port
|
||||
command: '-f "" -r 192.168.68.0/24'
|
||||
# vpn:
|
||||
# container_name: vpn
|
||||
# image: 'dperson/openvpn-client:latest'
|
||||
# environment:
|
||||
# - 'OTHER_ARGS= --mute-replay-warnings'
|
||||
# cap_add:
|
||||
# - net_admin
|
||||
# - SYS_MODULE
|
||||
# restart: unless-stopped
|
||||
# volumes:
|
||||
# - '${ROOT}/MediaCenter/config/vpn:/vpn'
|
||||
# - /lib/modules:/lib/modules
|
||||
# security_opt:
|
||||
# - 'label:disable'
|
||||
# devices:
|
||||
# - '/dev/net/tun:/dev/net/tun'
|
||||
# ports:
|
||||
# - '8113:8112' #deluge web UI Port
|
||||
# command: '-f "" -r 192.168.68.0/24'
|
||||
|
||||
deluge_vpn:
|
||||
container_name: deluge_vpn
|
||||
image: 'lscr.io/linuxserver/deluge:latest'
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- 'PUID=${PUID}'
|
||||
- 'PGID=${PGID}'
|
||||
- 'TZ=${TZ}'
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/deluge_vpn:/config'
|
||||
- '${HDDSTORAGE}:/MediaCenterBox'
|
||||
#ports:
|
||||
# - '8112:8112' #uncomment if you are not using the VPN
|
||||
network_mode: 'service:vpn' #comment/remove if you are not using the VPN
|
||||
depends_on: #comment/remove if you are not using the VPN
|
||||
- vpn #comment/remove if you are not using the VPN
|
||||
# deluge_vpn:
|
||||
# container_name: deluge_vpn
|
||||
# image: 'lscr.io/linuxserver/deluge:latest'
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# - 'PUID=${PUID}'
|
||||
# - 'PGID=${PGID}'
|
||||
# - 'TZ=${TZ}'
|
||||
# volumes:
|
||||
# - '${ROOT}/MediaCenter/config/deluge_vpn:/config'
|
||||
# - '${HDDSTORAGE}:/MediaCenterBox'
|
||||
# #ports:
|
||||
# # - '8112:8112' #uncomment if you are not using the VPN
|
||||
# network_mode: 'service:vpn' #comment/remove if you are not using the VPN
|
||||
# depends_on: #comment/remove if you are not using the VPN
|
||||
# - vpn #comment/remove if you are not using the VPN
|
||||
|
||||
|
||||
deluge_private:
|
||||
@@ -111,18 +111,18 @@ services:
|
||||
# ports:
|
||||
# - '6767:6767'
|
||||
|
||||
flaresolverr:
|
||||
# DockerHub mirror flaresolverr/flaresolverr:latest
|
||||
image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||
container_name: flaresolverr
|
||||
environment:
|
||||
- 'LOG_LEVEL=info'
|
||||
- 'LOG_HTML=false'
|
||||
- 'CAPTCHA_SOLVER=none'
|
||||
- 'TZ=${TZ}'
|
||||
ports:
|
||||
- '8191:8191'
|
||||
restart: unless-stopped
|
||||
# flaresolverr:
|
||||
# # DockerHub mirror flaresolverr/flaresolverr:latest
|
||||
# image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||
# container_name: flaresolverr
|
||||
# environment:
|
||||
# - 'LOG_LEVEL=info'
|
||||
# - 'LOG_HTML=false'
|
||||
# - 'CAPTCHA_SOLVER=none'
|
||||
# - 'TZ=${TZ}'
|
||||
# ports:
|
||||
# - '8191:8191'
|
||||
# restart: unless-stopped
|
||||
|
||||
|
||||
### Optional Containers
|
||||
|
||||
Reference in New Issue
Block a user