Update docker-compose.yml
Some checks failed
Close inactive issues / close-issues (push) Has been cancelled

This commit is contained in:
2026-01-31 15:45:45 +00:00
parent 15a42dae9e
commit d9b220efe8

View File

@@ -1,41 +1,41 @@
version: '3.4' version: '3.4'
services: services:
vpn: # vpn:
container_name: vpn # container_name: vpn
image: 'dperson/openvpn-client:latest' # image: 'dperson/openvpn-client:latest'
environment: # environment:
- 'OTHER_ARGS= --mute-replay-warnings' # - 'OTHER_ARGS= --mute-replay-warnings'
cap_add: # cap_add:
- net_admin # - net_admin
- SYS_MODULE # - SYS_MODULE
restart: unless-stopped # restart: unless-stopped
volumes: # volumes:
- '${ROOT}/MediaCenter/config/vpn:/vpn' # - '${ROOT}/MediaCenter/config/vpn:/vpn'
- /lib/modules:/lib/modules # - /lib/modules:/lib/modules
security_opt: # security_opt:
- 'label:disable' # - 'label:disable'
devices: # devices:
- '/dev/net/tun:/dev/net/tun' # - '/dev/net/tun:/dev/net/tun'
ports: # ports:
- '8113:8112' #deluge web UI Port # - '8113:8112' #deluge web UI Port
command: '-f "" -r 192.168.68.0/24' # command: '-f "" -r 192.168.68.0/24'
deluge_vpn: # deluge_vpn:
container_name: deluge_vpn # container_name: deluge_vpn
image: 'lscr.io/linuxserver/deluge:latest' # image: 'lscr.io/linuxserver/deluge:latest'
restart: unless-stopped # restart: unless-stopped
environment: # environment:
- 'PUID=${PUID}' # - 'PUID=${PUID}'
- 'PGID=${PGID}' # - 'PGID=${PGID}'
- 'TZ=${TZ}' # - 'TZ=${TZ}'
volumes: # volumes:
- '${ROOT}/MediaCenter/config/deluge_vpn:/config' # - '${ROOT}/MediaCenter/config/deluge_vpn:/config'
- '${HDDSTORAGE}:/MediaCenterBox' # - '${HDDSTORAGE}:/MediaCenterBox'
#ports: # #ports:
# - '8112:8112' #uncomment if you are not using the VPN # # - '8112:8112' #uncomment if you are not using the VPN
network_mode: 'service:vpn' #comment/remove 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 # depends_on: #comment/remove if you are not using the VPN
- vpn #comment/remove if you are not using the VPN # - vpn #comment/remove if you are not using the VPN
deluge_private: deluge_private:
@@ -111,18 +111,18 @@ services:
# ports: # ports:
# - '6767:6767' # - '6767:6767'
flaresolverr: # flaresolverr:
# DockerHub mirror flaresolverr/flaresolverr:latest # # DockerHub mirror flaresolverr/flaresolverr:latest
image: ghcr.io/flaresolverr/flaresolverr:latest # image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr # container_name: flaresolverr
environment: # environment:
- 'LOG_LEVEL=info' # - 'LOG_LEVEL=info'
- 'LOG_HTML=false' # - 'LOG_HTML=false'
- 'CAPTCHA_SOLVER=none' # - 'CAPTCHA_SOLVER=none'
- 'TZ=${TZ}' # - 'TZ=${TZ}'
ports: # ports:
- '8191:8191' # - '8191:8191'
restart: unless-stopped # restart: unless-stopped
### Optional Containers ### Optional Containers