#Little question for Migration to seerr from jellyseeer

6 messages · Page 1 of 1 (latest)

cold grove
#

Dear friends,
I successfully migrated from Jellyseerr to Seer 3.0.1.
I also imported my Docker files into the new volume (Windows 11 / Docker / WSL2). Everything is up-2-date.

However, I might need your help because I did the migration with ChatGPT 😄

I will share three YAML files. For me, YAML #2 is the important one (possible to use?), and YAML #3 is the one currently active on my system.
Sorry for my English — it’s not my native language.

YAML1
I had issues and chatgpt helped me because he told me i had  permission problems with the user.
Something like new Version is not using root user anymore.

services:
  seerr:
    image: ghcr.io/seerr-team/seerr:latest
    container_name: seerr
    restart: unless-stopped
    init: true
    ports:
      - "5055:5055"
    environment:
      - LOG_LEVEL=info
      - TZ=Europe/Berlin
    volumes:
      - C:\Users\bla\blajellyseerr\config:/app/config
YAML2
Then changed to this (THIS IS WORKING but would i have issues in the future?
user: "0:0" can i use this?

services:
  seerr:
    image: ghcr.io/seerr-team/seerr:latest
    container_name: seerr
    restart: unless-stopped
    init: true
    user: "0:0"
    ports:
      - "5055:5055"
    environment:
      - LOG_LEVEL=info
      - TZ=Europe/Berlin
    volumes:
      - C:\Users\bla\blajellyseerr\config:/app/config

YAML3
Now i am using this and Looks that its working --> I already imported my files via docker to the new created volume.

services:
  seerr:
    image: ghcr.io/seerr-team/seerr:latest
    container_name: seerr
    restart: unless-stopped
    init: true
    ports:
      - "5055:5055"
    environment:
      - LOG_LEVEL=info
      - TZ=Europe/Berlin
    volumes:
      - seerr_config:/app/config

volumes:
  seerr_config:
crisp atlas
#

Anyone that follows up, please correct me if I'm wrong 🙂
Just trying to give back a little from what I've learnt.

IF you're facing permissions issue(s), use the following command (changing it to suite your folder layout/structure):
chown -R 1000:1000 /path/to/appdata/config

Follow this guide section here to make sure your's kind of looks like this:
https://docs.seerr.dev/migration-guide#windows

Read our release announcement to learn what Seerr means for Jellyseerr and Overseerr users.

cold grove
#

Thanks for your swift reply, but i am using windows 11 / docker / wsl2
chown is for linux or not?

slender rock
#

Alternatively you can use the docker command stated in the docs :
docker run --rm -v /path/to/appdata/config:/data alpine chown -R 1000:1000 /data

#

#3 looks better, just be careful to not delete the volume

cold grove
#

Thanks for your swift reply too, that is my point i really not sure if i will be carefull with this volume in docker. Its my first volume. Maybe i should investigate more in this volume stuff.

Anyway, I will try the alternative command which you showed me too.
Thanks for help guys.