Automation
Automation
Section titled “Automation”Automate media acquisition and library management.
The *arr Stack
Section titled “The *arr Stack”Sonarr (TV Shows)
Section titled “Sonarr (TV Shows)”Automatically download and organize TV shows.
# Dockersonarr: image: linuxserver/sonarr:latest container_name: sonarr ports: - "8989:8989" volumes: - ./sonarr:/config - /mnt/media/tv:/tv - /mnt/downloads:/downloadsRadarr (Movies)
Section titled “Radarr (Movies)”Automatically download and organize movies.
# Dockerradarr: image: linuxserver/radarr:latest container_name: radarr ports: - "7878:7878" volumes: - ./radarr:/config - /mnt/media/movies:/movies - /mnt/downloads:/downloadsLidarr (Music)
Section titled “Lidarr (Music)”Automatically download and organize music.
# Dockerlidarr: image: linuxserver/lidarr:latest container_name: lidarr ports: - "8686:8686" volumes: - ./lidarr:/config - /mnt/media/music:/music - /mnt/downloads:/downloadsDownload Clients
Section titled “Download Clients”qBittorrent
Section titled “qBittorrent”qbittorrent: image: linuxserver/qbittorrent:latest container_name: qbittorrent ports: - "8080:8080" - "6881:6881" volumes: - ./qbittorrent:/config - /mnt/downloads:/downloadsSABnzbd
Section titled “SABnzbd”sabnzbd: image: linuxserver/sabnzbd:latest container_name: sabnzbd ports: - "8080:8080" volumes: - ./sabnzbd:/config - /mnt/downloads:/downloadsOverseerr (Requests)
Section titled “Overseerr (Requests)”Allow users to request content:
overseerr: image: linuxserver/overseerr:latest container_name: overseerr ports: - "5055:5055" volumes: - ./overseerr:/configProwlarr (Indexers)
Section titled “Prowlarr (Indexers)”Centralized indexer management:
prowlarr: image: linuxserver/prowlarr:latest container_name: prowlarr ports: - "9696:9696" volumes: - ./prowlarr:/configComplete Docker Stack
Section titled “Complete Docker Stack”version: '3.8'
services: plex: image: plexinc/pms-docker network_mode: host volumes: - ./plex:/config - /mnt/media:/data
sonarr: image: linuxserver/sonarr ports: ["8989:8989"] volumes: - ./sonarr:/config - /mnt/media/tv:/tv - /mnt/downloads:/downloads
radarr: image: linuxserver/radarr ports: ["7878:7878"] volumes: - ./radarr:/config - /mnt/media/movies:/movies - /mnt/downloads:/downloads
prowlarr: image: linuxserver/prowlarr ports: ["9696:9696"] volumes: - ./prowlarr:/config
qbittorrent: image: linuxserver/qbittorrent ports: ["8080:8080"] volumes: - ./qbittorrent:/config - /mnt/downloads:/downloads
overseerr: image: linuxserver/overseerr ports: ["5055:5055"] volumes: - ./overseerr:/configPlex Integration
Section titled “Plex Integration”Configure Sonarr/Radarr to notify Plex:
- Settings → Connect
- Add Plex Media Server
- Enter host, port, and authentication
- Enable library refresh on import