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: