#Unable to migrate from overseerr

15 messages · Page 1 of 1 (latest)

abstract summit
#

When i create the new Seerr docker I'm still getting the page to scan my libraries. Migration seems to not work. Let me show what I did, to understand what I f*cked up ahah

I created a new docker named Seerr.

here's my compose file :

--- services: seerr: image: ghcr.io/seerr-team/seerr:latest init: true container_name: seerr environment: - LOG_LEVEL=debug - TZ=Europe/Paris - PORT=5055 #optional ports: - 5055:5055 volumes: - /volume1/docker/seerr:/config healthcheck: test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1 start_period: 20s timeout: 3s interval: 15s retries: 3 restart: unless-stopped

I renamed the previous file (the one with logs etc) of "overseerr" into "seerr" (path : - /volume1/docker/seerr:/config)
I also did the sudo docker run --rm -v /volume1/docker/seerr:/data alpine chown -R 1000:1000 /data so that UID 1000 works fine

But after all that when starting the seerr compose, i'm still directed to the page where you can scan your libraries

little moon
#

Your config folder is wrong

#

As in the internal path

#

It has to be /app/config

#

Not /config

abstract summit
#

oh damn indeed

#

Like this ?

volumes: - /volume1/docker/seerr/config:/app/config

abstract summit
#

indeed

little moon
#

So dont add
volumes:
- /volume1/docker/seerr/config:/app/config

abstract summit
#

ok so just volumes:
- /volume1/docker/seerr:/app/config

little moon
#

Yes

abstract summit
#

ok ! 😄

#

Thanks legend @little moon 🙏