JoeyG1973

Members
  • Posts

    1
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

JoeyG1973's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hey all, Getting frustrated trying to get this up. My docker compose is below. What I am trying to do is only expose the ports needed for the gui and the privoxy via the bridge network then have everything else communicate on the plex-internal network. When I run docker-compose up delugevpn I keep getting this over and over again. The full debug log with the redactable bits redacted is here https://pastebin.com/1uu1qrKx 2019-10-23 14:31:41,759 DEBG 'start-script' stdout output:, Wed Oct 23 14:31:41 2019 write UDP: Operation not permitted (code=1) version: '3.3' services: pms-docker: container_name: plex networks: macvlan-static: ipv4_address: 192.168.1.210 plex-internal: ipv4_address: 10.0.3.2 environment: - TZ=America/New_York - PLEX_CLAIM= - UMASK=002 volumes: - '/mnt/data/plex/config:/config' - '/mnt/data/plex/transcode:/transcode' - '/mnt/data/plex/data:/data' - '/mnt/data/media:/data/media' devices: - '/dev/dri/card0:/dev/dri/card0' - '/dev/dri/renderD128:/dev/dri/renderD128' restart: unless-stopped image: plexinc/pms-docker radarr: container_name: hotio-radarr networks: plex-internal: ipv4_address: 10.0.3.3 ports: - "7878:7878/tcp" volumes: - '/mnt/data/radarr/config:/config' - '/mnt/data:/data' environment: - TZ=America/New_York - UMASK=002 restart: unless-stopped image: hotio/radarr delugevpn: container_name: deluge-openvpn networks: plex-internal: ipv4_address: 10.0.3.5 ports: - "8118:8118/tcp" - "8112:8112/tcp" # - "58846:58846/tcp" # - "58946:58946/tcp" # - "58946:58946/udp" environment: - VPN_ENABLED=yes - VPN_USER= - VPN_PASS= - VPN_PROV=pia - STRICT_PORT_FORWARD=yes - ENABLE_PRIVOXY=yes - LAN_NETWORK=192.168.1.0/24,10.0.3.0/24 - UMASK=000 - DELUGE_DAEMON_LOG_LEVEL=debug - DELUGE_WEB_LOG_LEVEL=debug - DEBUG=true # - UPID=0 # - UGID=0 volumes: - '/etc/localtime:/etc/localtime:ro' - '/mnt/data/deluge/data:/data' - '/mnt/data/deluge/config:/config' cap_add: - NET_ADMIN restart: unless-stopped image: binhex/arch-delugevpn networks: macvlan-static: external: true plex-internal: external: true