#"Overseerr Updated" notification in a loop

12 messages · Page 1 of 1 (latest)

dusk harbor
#

Hey guys
I'm getting a weird issue. I forked the official Overseerr repo of version 1.33.2 in order to edit some code.
When I try to build it, everything works great until I connect on the interface

I get the setup interface with a popup saying "Overseerr Updated Please click the button below to reload the application." When I click on it, it refreshes the page and ... it appears again, in a loop.
Any idea ?

(nothing in the logs, doesn't work in incognito, tried to restart the container, ...)

#

Docker compose:

  overseerr:
    container_name: overseerr
    #image: ghcr.io/hotio/overseerr:latest
    build: https://github.com/TayZ3r/plexify.git
    restart: unless-stopped
    environment:
      - PUID=${DOCKER_PUID}
      - PGID=${DOCKER_PGID}
      - UMASK=${UMASK}
      - TZ=${TZ}
    volumes:
      - ./containers/overseerr/config:/config
      - /mnt/data/downloads:/downloads
soft zephyr
#

You need an additional build arg

#

--build-arg COMMIT_TAG=xxxxxx

dusk harbor
#

oh I see

#

should I add this in the Dockerfile or the docker compose ?

soft zephyr
#
version: '3.8'
services:
  overseerr:
    container_name: overseerr
    #image: ghcr.io/hotio/overseerr:latest
    build:
      context: https://github.com/TayZ3r/plexify.git
      args:
        COMMIT_TAG: xxxxx  
    restart: unless-stopped
    environment:
      - PUID=${DOCKER_PUID}
      - PGID=${DOCKER_PGID}
      - UMASK=${UMASK}
      - TZ=${TZ}
    volumes:
      - ./containers/overseerr/config:/config
      - /mnt/data/downloads:/downloads
dusk harbor
#

Thanks a lot!

dusk harbor
#

do i have to change it manually each time I commit?

lone schooner
#

This loop drove me crazy so I ended up just deleting the StatusChecker folder and any references to it in the other files.