Media Server Services
Media Management
Sonarr
Sonarr 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.
docker run -d \
--name=sonarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 8989:8989 \
-v /path/to/sonarr/data:/config \
-v /path/to/tvseries:/tv \
-v /path/to/downloadclient-downloads:/downloads \
--restart unless-stopped \
lscr.io/linuxserver/sonarr:latest
Official Site
Radarr
Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort, and rename them.
docker run -d \
--name=radarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 7878:7878 \
-v /path/to/radarr/data:/config \
-v /path/to/movies:/movies \
-v /path/to/download-client-downloads:/downloads \
--restart unless-stopped \
lscr.io/linuxserver/radarr:latest
Official Site
Lidarr
Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them.
docker run -d \
--name=lidarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 8686:8686 \
-v /path/to/lidarr/config:/config \
-v /path/to/music:/music \
-v /path/to/downloads:/downloads \
--restart unless-stopped \
lscr.io/linuxserver/lidarr:latest
Official Site
Readarr
Readarr is a book collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new books from your favorite authors and will grab, sort and rename them.
docker run -d \
--name=readarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 8787:8787 \
-v /path/to/data:/config \
-v /path/to/books:/books \
-v /path/to/downloadclient-downloads:/downloads \
--restart unless-stopped \
lscr.io/linuxserver/readarr:develop
Official Site
Bazarr
Bazarr is a companion application to Sonarr and Radarr that manages and downloads subtitles based on your requirements.
docker run -d \
--name=bazarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 6767:6767 \
-v /path/to/bazarr/config:/config \
-v /path/to/movies:/movies \
-v /path/to/tv:/tv \
--restart unless-stopped \
lscr.io/linuxserver/bazarr:latest
Official Site
Media Players
Jellyfin
Jellyfin is the volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached.
docker run -d \
--name=jellyfin \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 8096:8096 \
-v /path/to/library:/config \
-v /path/to/tvseries:/data/tvshows \
-v /path/to/movies:/data/movies \
--restart unless-stopped \
jellyfin/jellyfin
Official Site
Plex
Plex organizes video, music and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices.
docker run -d \
--name=plex \
--net=host \
-e PUID=1000 \
-e PGID=1000 \
-e VERSION=docker \
-v /path/to/library:/config \
-v /path/to/tvseries:/tv \
-v /path/to/movies:/movies \
--restart unless-stopped \
lscr.io/linuxserver/plex:latest
Official Site
Request Management
Overseerr
Overseerr is a request management and media discovery tool built to work with your existing Plex ecosystem.
docker run -d \
--name=overseerr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 5055:5055 \
-v /path/to/appdata/config:/config \
--restart unless-stopped \
lscr.io/linuxserver/overseerr:latest
Official Site
Jellyseerr
Jellyseerr is a free and open source software application for managing requests for your media server. It is a fork of Overseerr built to be used with Jellyfin and Emby media servers.
docker run -d \
--name=jellyseerr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 5055:5055 \
-v /path/to/appdata/config:/app/config \
--restart unless-stopped \
fallenbagel/jellyseerr:latest
Official Site
Utilities
FlareSolverr
FlareSolverr is a proxy server to bypass Cloudflare protection. It's useful for applications that don't have the ability to bypass Cloudflare on their own.
docker run -d \
--name=flaresolverr \
-p 8191:8191 \
-e LOG_LEVEL=info \
--restart unless-stopped \
ghcr.io/flaresolverr/flaresolverr:latest
Official Site
Homarr
Homarr is a simple and lightweight homepage for your server, that helps you easily access all of your services in one place.
docker run -d \
--name homarr \
-p 7575:7575 \
-v /path/to/configs:/app/data/configs \
-v /path/to/icons:/app/public/icons \
--restart unless-stopped \
ghcr.io/ajnart/homarr:latest
Official Site
Portainer
Portainer is a lightweight management UI which allows you to easily manage your different Docker environments.
docker run -d \
-p 8000:8000 \
-p 9443:9443 \
--name portainer \
--restart=always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /path/to/portainer_data:/data \
portainer/portainer-ce:latest
Official Site