Sign inSign up

zigleur/jellyhub

By zigleur

Updated 28 days ago

Regroup all the content from your Jellyfin servers in one place to see which medias are available.

Image
0

50K+

zigleur/jellyhub repository overview

JellyHub

GitHub Repository

JellyHub is a web app that allow you to fetch media from all of your jellyfin servers and regroup it in one place, so there is one place to search for specific media and tells you on wich server the desired media is located.

Installation

Create a volume to store the data of the app or skip this step if you want to use a bind mount to a folder.

docker volume create jellyhub_data

Then you can run the app with the following command, make sure to replace the AUTH_SECRET and SECRET_KEY values with valid ones (You can generate a key for each with openssl rand -base64 32).

docker run -d --name jellyhub \
        -v jellyhub_data:/app/data \
        -e ALLOW_SIGNUP=false \
        -e AUTH_SECRET= \
        -e APP_URL=http://localhost:3000 \
        -e SECRET_KEY= \
        --restart unless-stopped \
        -p 3000:3000 \
        zigleur/jellyhub:latest

Now you can access the app at http://localhost:3000 (adapt the host and port depending on how you configured it)

Tag summary

Content type

Image

Digest

sha256:bbb00531d

Size

88.5 MB

Last updated

28 days ago

docker pull zigleur/jellyhub