mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
28 lines
987 B
YAML
28 lines
987 B
YAML
# [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with
|
|
# movies à la Couchpotato.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
radarr:
|
|
image: ghcr.io/linuxserver/radarr
|
|
container_name: radarr
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Database and Radarr configs
|
|
- ${BASEDIR:-/volume1/docker}/radarr/config:/config
|
|
# Location of Movie library on disk (See note in Application setup)
|
|
- ${BASEDIR:-/volume1/docker}/radarr/movies:/movies # optional
|
|
# Location of download managers output directory (See note in Application setup)
|
|
- ${BASEDIR:-/volume1/docker}/radarr/downloads:/downloads # optional
|
|
ports:
|
|
# The port for the Radarr webinterface
|
|
- 7878:7878
|
|
restart: unless-stopped
|