1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-03 15:27:45 +02:00
wiki/wiki/docker/linuxserver_-_radarr.md

2.7 KiB

linuxserver - radarr

This is a Docker container for a Radarr server. The official container and documentation was made by linuxserver.

Set-up

Create the files rebuild.sh and docker-compose.yml at the same place. Change the settings according to your needs and run ./rebuild.sh afterwards. It is recommended to set a download completed folder with the same internal and external mounts as your BitTorent client. This guide uses the same mounts as used in the Transmission Docker container. This namely causes the following line in the docker-compose.yml.

      - /var/lib/docker/volumes/transmission_data/_data/completed:/data/completed #optional

Environment-variables

Set the following environment-variables in the environment: section of the docker-compose file.

Name Usage Default
PUID user id for container user 1000
PGID group id for container user 1000
TZ specify the timezone Etc/UTC

Volumes

Set the following volumes in the volumes: section of the docker-compose file.

Outside mount/volume name Container mount Description
config /config directory for config
complete /movies directory for music

Ports

Set the following ports in the ports: section.

Container Port Recommended outside port Protocol Description
7878 7878 TCP webUI

rebuild.sh

#!/bin/sh
docker-compose down
docker pull lscr.io/linuxserver/radarr:latest
docker-compose up -d

docker-compose.yml

version: "2.1"
services:
  radarr:
    image: lscr.io/linuxserver/radarr:latest
    container_name: radarr
    environment:
      - PUID=0
      - PGID=0
      - TZ=Etc/UTC
    volumes:
      - config:/config
      - complete:/movies #optional
      - /var/lib/docker/volumes/transmission_data/_data/completed:/data/completed #optional
    ports:
      - 7878:7878
    restart: unless-stopped

volumes:
    config:
        driver: local
    complete:
        driver: local