Replies: 1 comment
-
I do not know what I did specifically, but finally got it working... sorry I cannot be more specific |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I am kind of a N00B, but I got Nordlynx going on the first try. I guess it was well explained. My only issue is accessing the UI for nzbget - it just does not work. Here is my setup:
`version: "3"
services:
nordlynx:
image: ghcr.io/bubuntux/nordlynx
hostname: nordlynx
container_name: nordlynx
cap_add:
- NET_ADMIN # required
- SYS_MODULE # maybe
environment:
- PRIVATE_KEY={redacted} # required
- QUERY=filters[servers_groups][identifier]=legacy_p2p
- NET_LOCAL=192.168.1.0/16
- TZ=${TIMEZONE}
- SERVICE_NAMES= filebot sonarr radarr bazarr jackett heimdall tautulli plex
sysctls:
- net.ipv4.conf.all.src_valid_mark=1 # maybe
- net.ipv4.conf.all.rp_filter=2 # maybe; set reverse path filter to loose mode
- net.ipv6.conf.all.disable_ipv6=1 # disable ipv6; recommended if using ipv4 only# wireguard:
networks:
default:
aliases:
- nzbget
ports:
- "${NZBGET_PORT}:6789"
nzbget:
image: ghostserverd/nzbget
container_name: nzbget
restart: always
network_mode: service:nordlynx
depends_on:
- nordlynx
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TIMEZONE}
- NZBGET_WEB_USER=${NZBGET_WEB_USER}
- NZBGET_WEB_PASS=${NZBGET_WEB_PASS}
- NZBGET_MAIN_DIR=${NZBGET_MAIN_DIR}
- NZBGET_SCRIPT_DIR=${NZBGET_SCRIPT_DIR}
- FILEBOT_PORT=${FILEBOT_PORT}
volumes:
- ${CONFIG_DIR}/nzbget:/config
- ${DOWNLOAD_DIR}/nzb:/downloads/nzb
`
Anyone out there can show me where I went wrong?
Beta Was this translation helpful? Give feedback.
All reactions