mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
added jellyseerr
This commit is contained in:
@@ -0,0 +1,7 @@
|
|||||||
|
# Jellyseerr
|
||||||
|
|
||||||
|
Official Site: https://docs.jellyseerr.dev/
|
||||||
|
Proxy port: 5055
|
||||||
|
composer sample: https://hotio.dev/containers/jellyseerr/#__tabbed_1_2
|
||||||
|
|
||||||
|
Jellyseerr is a free and open-source software application for managing requests for your media library. As a fork of Overseerr, it's been adapted to work seamlessly with Jellyfin and Emby media servers. It provides a simple and user-friendly interface that allows your users to browse, discover, and request new movies and TV shows. Once a request is made and approved, Jellyseerr integrates with your existing *arr stack (Sonarr, Radarr) to automatically handle the searching and downloading of the requested content, streamlining the entire process of adding new media to your server.
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
services:
|
||||||
|
jellyseerr:
|
||||||
|
container_name: jellyseerr
|
||||||
|
image: ${JELLYSEERR_IMAGE}
|
||||||
|
ports:
|
||||||
|
- "5055:5055"
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- UMASK=002
|
||||||
|
- TZ=${TZ}
|
||||||
|
volumes:
|
||||||
|
- ${VOL_PATH}:/config
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# Jellyseerr
|
||||||
|
VOL_PATH=./data/jellyseerr/config
|
||||||
|
JELLYSEERR_IMAGE=ghcr.io/hotio/jellyseerr:release
|
||||||
|
TZ="America/Vancouver"
|
||||||
Reference in New Issue
Block a user