Skip to content

dylanblokhuis/playarr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Playarr



Watch all your media from Radarr and Sonarr

Server (docker)

Pull the docker image (amd64 and arm64 are supported) and configure the volumes just like Radarr and Sonarr so they match.

Below is how an entry in your docker-compose.yml could look like:

version: "3.4"

services:
  playarr:
      container_name: playarr
      image: ghcr.io/dylanblokhuis/playarr-server:master
      restart: unless-stopped
      ports:
        - 8000:8000
      environment:
        - SONARR_ADDRESS=http://<host>:8989
        - SONARR_API_KEY=
        - RADARR_ADDRESS=http://<host>:7878
        - RADARR_API_KEY=
      volumes:
        - <path_to_tv>:/tv
        - <path_to_movies>:/movies

Client

The binaries published in releases are without the "mpv (>0.35.0)" dependency. So you need to install it yourself:

sudo add-apt-repository ppa:savoury1/ffmpeg4
sudo add-apt-repository ppa:savoury1/ffmpeg5
sudo add-apt-repository ppa:savoury1/mpv
sudo apt-get update
sudo apt-get install libmpv2 mpv
  • Arch
pacman -S mpv