Maintained by Thijmen Heuvelink

Sonarr is a widely used software for automating the retrieval and management of TV shows, making it effortless to keep up with your favorite series.

Docker Compose

Save the following contents as a docker-compose.yml file.

version: "2.1"
services:
  sonarr:
    image: lscr.io/linuxserver/sonarr:latest
    container_name: sonarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Amsterdam
    volumes:
      - ./config:/config
      - ./data/series:/series
      - ./data/downloads:/downloads
    ports:
      - 8989:8989
    restart: unless-stopped

Start it

docker-compose up -d

This knowledge base serves as a valuable tool to simplify installations, troubleshoot common problems and to enhance the overall developer / admin experience. mail@thijmenheuvelink.nl - all rights reserved