Replies: 2 comments 1 reply
-
While you can certainly build jellyfin-web inside a docker container, running it with the development server vía |
Beta Was this translation helpful? Give feedback.
-
Run both the server and UI as services on the same docker network; a good way would be to use a docker compose file So if the service name for the UI container was |
Beta Was this translation helpful? Give feedback.
-
See update
Hello,
I know I can run the Jellyfin server without the web instance using the
--nowebclient
option. However, is it possible to run the server on Windows using a binary and run the web client from source on Windows in a Docker container?I've tried to build jellyfin-web from source using Docker but I didn't manage to do it. I cloned the jellyfin-web repo from GitHub and tried to build a Docker image using the
Dockerfile.portable
file:The build succeed but the image is broken and isn't runnable. Here's the error message when running from Docker Desktop:
And from the WSL command line:
It is very likely that I do that improperly, so how can I achieve that?
Thank you for your help.
Update
OK I managed to build a working image using a custom Dockerfile:
And running it like that:
Now the problem is when I launch my server with
--nowebclient
using the Windows binary and my web client in Docker I access the web UI atlocalhost:8080
, I connect to my server atlocalhost:8096
but I can't connect to an account. I always get an error even though I'm pretty sure I type my password correctly:Beta Was this translation helpful? Give feedback.
All reactions