Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace nzbget with sabnzbd #86

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

AntonyLeons
Copy link

@AntonyLeons AntonyLeons commented Mar 18, 2023

addresses deprecation issue #84

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

@AntonyLeons AntonyLeons changed the title replace nzbget with sabzbd replace nzbget with sabnzbd Mar 18, 2023
@ynazar1
Copy link

ynazar1 commented Sep 24, 2023

The PR is missing:

  • Instructions on setting up the sabnzbd (and removing nzbget) as well as any integrations/hooks that are needed to happen in the *arrs
  • (As mentioned above) sabnzbd runs on port 8080 by default and this needs to be worked around by mapping it to different port in the docker compose to avoid port conflicts as well as updating documentation and docker compose config to reflect that

@ynazar1
Copy link

ynazar1 commented Sep 25, 2023

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants