linuxserver / docker-deluge

GNU General Public License v3.0
244 stars 90 forks source link

[BUG] Deluge fails to start #179

Closed agom08 closed 1 year ago

agom08 commented 1 year ago

Is there an existing issue for this?

Current Behavior

Deluge container fails to start.

Expected Behavior

Deluge container should start as expected.

Steps To Reproduce

Deluge log in docker states the following:

2023-02-17 12:20:03.978988 [info] System information Linux xxxxxx-Legion-T530-28ICB 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 GNU/Linux

2023-02-17 12:20:04.001787 [info] OS_ARCH defined as 'x86-64'

2023-02-17 12:20:04.023031 [info] PUID defined as '1000'

2023-02-17 12:20:04.045420 [info] PGID defined as '1000'

2023-02-17 12:20:04.070174 [warn] UMASK not defined (via -e UMASK), defaulting to '000'

2023-02-17 12:20:04.090603 [info] Permissions already set for '/config'

2023-02-17 12:20:04.111883 [info] Deleting files in /tmp (non recursive)...

2023-02-17 12:20:04.137324 [info] VPN_ENABLED defined as 'yes'

2023-02-17 12:20:04.158913 [info] VPN_CLIENT defined as 'openvpn'

2023-02-17 12:20:04.180183 [info] VPN_PROV defined as 'custom'

2023-02-17 12:20:04.205445 [info] OpenVPN config file (ovpn extension) is located at /config/openvpn/usxxxxx.nordvpn.com.udp1194.ovpn

2023-02-17 12:20:04.330147 [info] VPN remote server(s) defined as 'xxx.xxx.xxx.xx,'

2023-02-17 12:20:04.350186 [info] VPN remote port(s) defined as '1194,'

2023-02-17 12:20:04.369075 [info] VPN remote protcol(s) defined as 'udp,'

2023-02-17 12:20:04.390061 [info] VPN_DEVICE_TYPE defined as 'tun0'

2023-02-17 12:20:04.410911 [info] VPN_OPTIONS not defined (via -e VPN_OPTIONS)

Environment

- OS:Linux mint 21.1
- How docker service was installed:
Using dockSTARTer

CPU architecture

x86-64

Docker creation

Name: compose
services:
  delugevpn:
    cap_add:
    - NET_ADMIN
    - SYS_MODULE
    container_name: delugevpn
    environment:
      ENABLE_PRIVOXY: "no"
      LAN_NETWORK: 192.168.50.0/24
      NAME_SERVERS: 1.1.1.1,8.8.8.8
      PGID: "1000"
      PUID: "1000"
      TZ: America/Chicago
      VPN_CLIENT: openvpn
      VPN_ENABLED: "yes"
      VPN_OPTIONS: ""
      VPN_PASS: xxxxxxx
      VPN_PROV: custom
      VPN_USER: xxxxxxx
    hostname: xxxxxx-Legion-T530-28ICB
    image: ghcr.io/binhex/arch-delugevpn
    logging:
      driver: json-file
      options:
        max-file: "10"
        max-size: 200k
    networks:
      default: null
    ports:
    - mode: ingress
      target: 6881
      published: "6881"
      protocol: tcp
    - mode: ingress
      target: 6881
      published: "6881"
      protocol: udp
    - mode: ingress
      target: 8112
      published: "8112"
      protocol: tcp
    - mode: ingress
      target: 8118
      published: "8118"
      protocol: tcp
    - mode: ingress
      target: 51413
      published: "51413"
      protocol: tcp
    - mode: ingress
      target: 51413
      published: "51413"
      protocol: udp
    - mode: ingress
      target: 58846
      published: "58846"
      protocol: tcp
    - mode: ingress
      target: 58946
      published: "58946"
      protocol: tcp
    privileged: true
    restart: unless-stopped
    sysctls:
      net.ipv4.conf.all.src_valid_mark: "1"
    volumes:
    - type: bind
      source: /etc/localtime
      target: /etc/localtime
      read_only: true
      bind:
        create_host_path: true
    - type: bind
      source: /home/xxxxxxx/.config/appdata/delugevpn
      target: /config
      bind:
        create_host_path: true
    - type: bind
      source: /xxxxx/xxxxxx
      target: /storage
      bind:
        create_host_path: true
    - type: bind
      source: /home/xxxxx/.config/appdata/.openvpn
      target: /config/openvpn
      bind:
        create_host_path: true
    - type: bind
      source: /home/xxxx/.config/appdata/.wireguard
      target: /config/wireguard
      bind:
        create_host_path: true
  openvpnas:
    cap_add:
    - NET_ADMIN
    container_name: openvpnas
    environment:
      INTERFACE: eth0
      PGID: "1000"
      PUID: "1000"
      TZ: America/Chicago
    hostname: xxxxxx-Legion-T530-28ICB
    image: lscr.io/linuxserver/openvpn-as
    logging:
      driver: json-file
      options:
        max-file: "10"
        max-size: 200k
    networks:
      default: null
    ports:
    - mode: ingress
      target: 943
      published: "943"
      protocol: tcp
    - mode: ingress
      target: 1194
      published: "1194"
      protocol: udp
    - mode: ingress
      target: 9443
      published: "9443"
      protocol: tcp
    restart: unless-stopped
    volumes:
    - type: bind
      source: /etc/localtime
      target: /etc/localtime
      read_only: true
      bind:
        create_host_path: true
    - type: bind
      source: /home/xxxxxx/.config/appdata/openvpnas
      target: /config
      bind:
        create_host_path: true
    - type: bind
      source: /xxxx/xxxxxx
      target: /storage
      bind:
        create_host_path: true
  portainer:
    command:
    - -H
    - unix:///var/run/docker.sock
    container_name: portainer
    environment:
      TZ: America/Chicago
    hostname: xxxxxxx-Legion-T530-28ICB
    image: portainer/portainer-ce
    logging:
      driver: json-file
      options:
        max-file: "10"
        max-size: 200k
    networks:
      default: null
    ports:
    - mode: ingress
      target: 9000
      published: "9000"
      protocol: tcp
    restart: unless-stopped
    volumes:
    - type: bind
      source: /etc/localtime
      target: /etc/localtime
      read_only: true
      bind:
        create_host_path: true
    - type: bind
      source: /var/run/docker.sock
      target: /var/run/docker.sock
      bind:
        create_host_path: true
    - type: bind
      source: /home/xxxxx/.config/appdata/portainer
      target: /data
      bind:
        create_host_path: true
    - type: bind
      source: /xxx/xxxxxx
      target: /storage
      bind:
        create_host_path: true

Container logs

2023-02-17 12:20:03.978988 [info] System information Linux xxxxxx-Legion-T530-28ICB 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 GNU/Linux

2023-02-17 12:20:04.001787 [info] OS_ARCH defined as 'x86-64'

2023-02-17 12:20:04.023031 [info] PUID defined as '1000'

2023-02-17 12:20:04.045420 [info] PGID defined as '1000'

2023-02-17 12:20:04.070174 [warn] UMASK not defined (via -e UMASK), defaulting to '000'

2023-02-17 12:20:04.090603 [info] Permissions already set for '/config'

2023-02-17 12:20:04.111883 [info] Deleting files in /tmp (non recursive)...

2023-02-17 12:20:04.137324 [info] VPN_ENABLED defined as 'yes'

2023-02-17 12:20:04.158913 [info] VPN_CLIENT defined as 'openvpn'

2023-02-17 12:20:04.180183 [info] VPN_PROV defined as 'custom'

2023-02-17 12:20:04.205445 [info] OpenVPN config file (ovpn extension) is located at /config/openvpn/usxxxxx.nordvpn.com.udp1194.ovpn

2023-02-17 12:20:04.330147 [info] VPN remote server(s) defined as 'xxx.xxx.xxx.xx,'

2023-02-17 12:20:04.350186 [info] VPN remote port(s) defined as '1194,'

2023-02-17 12:20:04.369075 [info] VPN remote protcol(s) defined as 'udp,'

2023-02-17 12:20:04.390061 [info] VPN_DEVICE_TYPE defined as 'tun0'

2023-02-17 12:20:04.410911 [info] VPN_OPTIONS not defined (via -e VPN_OPTIONS)
github-actions[bot] commented 1 year ago

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.

thespad commented 1 year ago

ghcr.io/binhex/arch-delugevpn is not our image

Openvpn-as has been deprecated and unsupported for a long time.

github-actions[bot] commented 1 year ago

A human has marked this issue as invalid, this likely happened because the issue template was not used in the creation of the issue.