#Unable to login using Jellyfin/Jellyseerr

5 messages · Page 1 of 1 (latest)

fervent pecan
#

This is my configuration:

    image: ghcr.io/fallenbagel/jellyseerr:latest
    container_name: jellyseerr
    network_mode: "service:vpn"
    depends_on:
      vpn:
        condition: service_healthy
    environment:
      - LOG_LEVEL=debug
      - TZ=Europe/Athens
      - PORT=5055 #optional
    volumes:
      - '${MY_LOCATION}/jellyseerr:/app/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

  jellyfin:
    image: jellyfin/jellyfin
    container_name: jellyfin
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Athens
    network_mode: "service:vpn"
    depends_on:
      vpn:
        condition: service_healthy
    volumes:
      - ${MY_LOCATION}/Jellyfin/config:/config
      - ${MY_LOCATION}/Jellyfin/cache:/cache
      - /mnt:/mnt:ro
    restart: 'unless-stopped'```

I'm trying to login and first-time-setup but i can't sign in successfully. Infinite login screen? Both jellyfin and jellyseerr are reachable.

On second screenshot of logs, i've tryied to use "localhost" as ip since - because for some reason - it cannot ping 192.168.1.130 or other local ip but it can ping 1.1.1.1 (so there is some internet access). I even tried the docker's ip (172.27.0.2)
vestal yew
#

Remove the URL Base

#

Unless you configured jellyfin to be reachable under ip:port/web, it is not needed

fervent pecan
vestal yew