You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.2 KiB
YAML

# [Sonarr](https://sonarr.tv/) (formerly NZBdrone) is a PVR for usenet and
# bittorrent users. It can monitor multiple RSS feeds for new episodes of your
# favorite shows and will grab, sort and rename them. It can also be configured
# to automatically upgrade the quality of files already downloaded when a better
# quality format becomes available.
---
version: "2.1"
services:
sonarr:
image: ghcr.io/linuxserver/sonarr
container_name: sonarr
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 sonarr configs
- ${BASEDIR:-/volume1/docker}/sonarr/config:/config
# Location of TV library on disk (See note in Application setup)
- ${BASEDIR:-/volume1/docker}/sonarr/tv:/tv # optional
# Location of download managers output directory (See note in Application setup)
- ${BASEDIR:-/volume1/docker}/sonarr/downloads:/downloads # optional
ports:
# The port for the Sonarr webinterface
- 8989:8989
restart: unless-stopped