Skip to content

Sonarr

Description⚓︎

Sonarr is a TV Show collection manager for Usenet and BitTorrent users
It basically automatically downloads, renames and manages your TV Shows while respecting your custom settings

Warning

This guide utilises Hardlinks
Refer to Trash's Guide for elaborate description

Note

For extended guide, refer to TRaSH-Guides

Docker⚓︎

Basic info⚓︎

Basic info with official links

docker-compose.yml⚓︎

YAML
---
version: "2.1"
services:
  sonarr:
    image: linuxserver/sonarr:latest
    container_name: sonarr
    networks:
      - proxy # rename this to your custom docker network
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}
      - DOCKER_MODS=ghcr.io/gilbn/theme.park:sonarr
      - TP_THEME=organizr
    volumes:
      - ${CFG_DIR}/sonarr:/config
      - ${BAK_CFG_DIR}/sonarr:/config/Backups
      - ${DATA_DIR}:/data
    ports:
      - 8989:8989
    restart: unless-stopped

networks:
  proxy:    # rename this to your custom docker network.
    external: true

deploy.sh⚓︎

Bash
1
2
3
mkdir -p "${CFG_DIR}"/sonarr
mkdir -p "${BAK_CFG_DIR}"/sonarr
docker compose up -d