Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Relevant Docker Compose:
- ***********************
- NZBGET
- ***********************
- nzbget:
- image: lscr.io/linuxserver/nzbget:latest
- container_name: "nzbget"
- restart: unless-stopped
- environment:
- PUID: "${PUID}"
- PGID: "${PGID}"
- TZ: "${TZ}"
- NZBGET_USER: "${NZB_USER}"
- NZBGET_PASS: "${NZB_PASS}"
- volumes:
- - "${CONFIG_DIR}/nzbget:/config"
- - "${MEDIA_DIR}/nzbget:/media/nzbget"
- - "${NZB_CERTS}:/certs"
- ports:
- - "6789:6789"
- ***********************
- SONARR
- ***********************
- sonarr:
- container_name: "sonarr"
- image: lscr.io/linuxserver/sonarr:develop
- restart: unless-stopped
- environment:
- PUID: "${PUID}"
- PGID: "${PGID}"
- TZ: "${TZ}"
- volumes:
- - "/var/lib/sonarr:/config"
- - "${MEDIA_DIR}:/media"
- ports:
- - "8989:8989"
- ***********************************************
- .env Variables:
- PUID=1000
- PGID=1000
- NZB_CERTS=/etc/ssl/certs
- MEDIA_DIR=/home/troggoman/Media-Array/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement