Installation
RadarrJellyfin can be installed by following the Portainer guide for creating a new stack. Learn about configuring a Docker stacks and then use the following Docker Compose code to run this app:
---
services:
radarr:jellyfin:
image: lscr.io/linuxserver/radarr:jellyfin:latest
container_name: radarrjellyfin
network_mode: bridge
environment:
- PUID=1000
- PGID=1000
- TZ=America/Vancouver
volumes:
# Persistent Data
- /srv/radarr:jellyfin:/config
# Media Folders
- /mnt/movies:/mmt/movies
#- Downloads Folder/mnt/television:/mmt/television
- /mnt/downloads:music:/mmt/music
- /mnt/downloadsbooks:/mmt/books
devices:
- /dev/dri:/dev/dri
ports:
- 7878:78788096:8096
- 8920:8920
- 7359:7359/udp
- 1900:1900/udp
restart: unless-stopped