Page 1 of 1

[Solved] jellyseerr Install

Posted: Thu Jul 24, 2025 2:09 am
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?


Re: jellyseerr Install

Posted: Thu Jul 24, 2025 11:47 am
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.


Re: jellyseerr Install

Posted: Fri Jul 25, 2025 12:10 am
by MediaMan

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


Re: jellyseerr Install

Posted: Fri Jul 25, 2025 2:00 am
by rogs

No, you are awesome! 🔥

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