sebgl / htpc-download-box

Sonarr / Radarr / Jackett / NZBGet / Deluge / OpenVPN / Plex
1.92k stars 323 forks source link

replace nzbget with sabnzbd #86

Open AntonyLeons opened 1 year ago

AntonyLeons commented 1 year ago

addresses deprecation issue #84

minor issue that the default port for sabnzbd is 8080, a popular port on most servers

ynazar1 commented 9 months ago

The PR is missing:

ynazar1 commented 9 months ago

Slightly better docker-compose avoiding port conflicts. Use /data/downloads/whatever inside the container when setting up directories under config options.

  sabnzbd:
    container_name: sabnzbd
    image: lscr.io/linuxserver/sabnzbd:latest
    restart: unless-stopped
    # network_mode: host # Cannot use 'host' if remapping ports
    environment:
      - PUID=${PUID} # default user id, defined in .env
      - PGID=${PGID} # default group id, defined in .env
      - TZ=${TZ} # timezone, defined in .env
    volumes:
      - ${ROOT}/downloads:/data/downloads # main downloads folder for everything
      - ${CONF_ROOT}/config/sabnzbd:/config # config file location
    ports:
      - 6789:8080 # Remap port for sabnzbd (usenet client) use old nzbget port