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