https://github.com/krax0x/media-stack
Media stack for automated download, renaming and sorting with Jellyfin + *arr services
https://github.com/krax0x/media-stack
bazarr docker docker-compose homelab homeserver jellyfin jellyseerr media media-server media-server-docker radarr sonarr
Last synced: 6 months ago
JSON representation
Media stack for automated download, renaming and sorting with Jellyfin + *arr services
- Host: GitHub
- URL: https://github.com/krax0x/media-stack
- Owner: krax0x
- Created: 2023-09-04T06:16:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-19T14:36:41.000Z (8 months ago)
- Last Synced: 2025-03-25T09:12:14.245Z (7 months ago)
- Topics: bazarr, docker, docker-compose, homelab, homeserver, jellyfin, jellyseerr, media, media-server, media-server-docker, radarr, sonarr
- Homepage:
- Size: 27.3 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Media Server Docker Compose Configuration
This Docker Compose configuration sets up a comprehensive media server stack, including media management, torrent downloading, subtitle management, and automatic updates, all within Docker containers.
> [!warning]
> Only for educational purposes!## Prerequisites
Before running this setup, ensure you have the following installed on your host machine:
- Docker
- Docker Compose
## ConfigurationEnsure you have the following directory structure on your host machine:
```arduino
data
├── config
├── downloads
│ ├── movies
│ ├── music
│ ├── tv
└── media
├── movies
├── music
└── tv
```Replace `${BASE_DIR}`, `/data/config`, `/data/media`, `/data/downloads` with appropriate paths according to your setup in .env file.
## Getting Started1. Clone this repository to your local machine.
2. Update the `.env` file with appropriate values for `PUID`, `PGID`, and `TIMEZONE`.
3. Customize the paths in the Docker Compose file (`docker-compose.yml`) according to your setup.
4. Run `docker-compose up -d` to start all services in detached mode.> [!note]
> - Ensure the specified ports are available and not used by other services.
> - Adjust the configuration and volumes as needed based on your specific requirements.
> - Refer to the respective documentation for each service for more detailed configuration options and troubleshooting.
## Services### Jellyfin
[Jellyfin](https://jellyfin.org/) is a free, open-source media server that enables you to organize, stream, and share your media.
- **Port:** 8096
- **Volumes:** `/data/config/jellyfin:/cache`, `/data/config/jellyfin:/config`, `/data/media:/data/media`### qBittorrent
[qBittorrent](https://www.qbittorrent.org/) is a fast, lightweight torrent client with a web interface.
- **Port:** 8080
- **Volumes:** `/data/config/qbittorrent:/config`, `/data/downloads:/data/downloads`.### Prowlarr
[Prowlarr](https://github.com/Prowlarr/Prowlarr) is an indexer that allows you to use torrent trackers with *arr services.
- **Port:** 9696
- **Volumes:** `/data/config/prowlarr:/config`### Sonarr
[Sonarr](https://sonarr.tv/) is a tv show collection manager.
- **Port:** 8989
- **Volumes:** `/data/config/sonarr:/config`, `${BASE_DIR}:/data`### Radarr
[Radarr](https://radarr.video/) is a movie collection manager.
- **Port:** 7878
- **Volumes:** `/data/config/radarr:/config`, `${BASE_DIR}:/data`### Bazarr
[Bazarr](https://www.bazarr.media/) is a companion application to Sonarr and Radarr that manages and downloads subtitles.
- **Port:** 6767
- **Volumes:** `/data/config/bazarr:/config`, `/data/media:/data/movies`### Readarr
[Readarr](https://readarr.com/) is a eBook collection manager.
- **Port:** 8787
- **Volumes:** `/data/config/readarr:/config`, `/data/media/books:/books`, `/data/downloads:/data/downloads `### WatchTower
[Watchtower](https://containrrr.dev/watchtower/) automatically updates Docker containers when new versions are available.
- **Volumes:** `/var/run/docker.sock:/var/run/docker.sock`
### Jellyseerr
[Jellyseerr](https://github.com/fallenbagel/Jellyseerr) is a service for managing requests for movies and shows.
- **Port:** 5055
- **Volumes:** `/data/config/jellyseerr:/config`### Recyclarr
[Recyclarr](https://recyclarr.dev/wiki/) is a companion CLI tool for Sonarr/Radarr to syncronize recommended settings with TRaSH guides.
- **Volumes:** '/data/config/recyclarr:/config'
## Useful links
- Amazing repo with plugins for jellyfin - [Awesome Jellyfin](https://github.com/awesome-jellyfin/awesome-jellyfin?tab=readme-ov-file)