Migrate existing Hugo content
Some checks failed
deploy-docs / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-03-24 23:36:30 +00:00
parent 748b4149bd
commit e2d1e600d5
56 changed files with 2149 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
---
title: jellyseer
description: jellyseer
author: wompmacho
date: 2025-02-04
lastmod: 2025-02-04
showHero: false # needed to hide "hero banner"
---
## 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
```