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?