2024-12-02, 01:50 AM
Howdy,
I am trying to setup jellyfin on docker on a windows 11 machine using the wsl2 integration. I can access jellyfin web through a local IP (eg 192.168.1.15:8096).
I have two issues:
1. when i restart my computer, my existing user/pass doesnt work. So I have redo the setup wizard
2. after doing 1., I have to login everytime I refresh my page (like doing cmd+r on my mac laptop)
My docker compose:
any idea what is going on?
thanks!
I am trying to setup jellyfin on docker on a windows 11 machine using the wsl2 integration. I can access jellyfin web through a local IP (eg 192.168.1.15:8096).
I have two issues:
1. when i restart my computer, my existing user/pass doesnt work. So I have redo the setup wizard
2. after doing 1., I have to login everytime I refresh my page (like doing cmd+r on my mac laptop)
My docker compose:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=America/Toronto
volumes:
- /mnt/f/config/jellyfin-configconfig
- /mnt/f/data/mediadata/media
ports:
- "8096:8096"
restart: unless-stopped
any idea what is going on?
thanks!