Files
docs-public/projects/jellyseer/index.md
wompmacho 56c4f853c0
All checks were successful
deploy-docs / build-and-deploy (push) Successful in 1m11s
add tags to projects
2026-04-03 08:18:05 +00:00

33 lines
793 B
Markdown

---
title: jellyseer
description: request management for jellyfin
showHero: false
author: wompmacho
date: '2025-02-04'
lastmod: '2025-02-04'
tags: ['media', 'requests', 'self-hosted']
---
## What is jellyseer?
`Jellyseerr` is a free, open-source, and highly intuitive media request management tool designed for the Jellyfin (and Plex/Emby) ecosystem. It essentially acts as a "gateway" between your users and your media server.
## Docker Compose Example
``` yaml
# jellyseerr - docker compose
---
services:
jellyseerr:
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
environment:
- LOG_LEVEL=debug
- TZ=America/New_York
ports:
- 5055:5055
volumes:
- /mnt/store/app/jellyseerr/config:/app/config
restart: unless-stopped
```