[Solved] jellyseerr Install

Having any issues installing YAMS? This is the place to ask!
Post Reply
MediaMan
Posts: 2
Joined: Thu Jul 24, 2025 2:05 am
Canada

[Solved] jellyseerr Install

Post by MediaMan »

I installed Jellyseerr using the 'add a container' method.

Here is the compose file I used:

services:
jellyseerr:
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
environment:
- LOG_LEVEL=debug
- TZ=America/Halifax
- PORT=5055 #optional
- PUID=${PUID} # Using YAMS's user ID
- PGID=${PGID} # Using YAMS's group ID
ports:
- 5055:5055
volumes:
- ${INSTALL_DIRECTORY}/config/jellyseerr:/config
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
restart: unless-stopped

However, when I open Jellyseerr I get an error on the homepage of:

The /app/config volume mount was not configured properly. All data will be cleared when the container is stopped or restarted.

Am I missing something obvious here?

Looking at this line here:

Code: Select all

- ${INSTALL_DIRECTORY}/config/jellyseerr:/config

I used the normal /opt/yams install directory, and is :/config not the correct bind mount?

User avatar
rogs
Site Admin
Posts: 405
Joined: Mon Oct 23, 2023 12:53 pm
Location: Montevideo, Uruguay
Gender:
Contact:
Uruguay

Re: jellyseerr Install

Post by rogs »

Hey @MediaMan!

Your error is pretty self explanatory. You are mounting:

Code: Select all

- ${INSTALL_DIRECTORY}/config/jellyseerr:/config

but the error details you must mount:

Code: Select all

- ${INSTALL_DIRECTORY}/config/jellyseerr:/app/config # See the /app/config mount

Try changing the mount and let me know!

Cheers!

Roger.

YAMS Creator

E: roger (at) rogs.me. Fuck you, email bots.
W: https://rogs.me
gpg: curl -sL https://rogs.me/rogs.txt | gpg --import
fingerprint: ADDF BCB7 8B86 8D93 FC4E 3224 C7EC E9C6 C36E C2E6


Also, I love cats :mrgreen:

Pirate jet, pirate jet
MediaMan
Posts: 2
Joined: Thu Jul 24, 2025 2:05 am
Canada

Re: jellyseerr Install

Post by MediaMan »

Well I feel silly. I believe that worked. Thanks for doing this! You're awesome!

User avatar
rogs
Site Admin
Posts: 405
Joined: Mon Oct 23, 2023 12:53 pm
Location: Montevideo, Uruguay
Gender:
Contact:
Uruguay

Re: jellyseerr Install

Post by rogs »

No, you are awesome! 🔥

I'm glad it is working now :D thank you for using YAMS!

YAMS Creator

E: roger (at) rogs.me. Fuck you, email bots.
W: https://rogs.me
gpg: curl -sL https://rogs.me/rogs.txt | gpg --import
fingerprint: ADDF BCB7 8B86 8D93 FC4E 3224 C7EC E9C6 C36E C2E6


Also, I love cats :mrgreen:

Pirate jet, pirate jet
Post Reply