2025-04-06, 03:29 PM
In terms of performance and connection stability, the only issues I've seen from other users is when paired with a reverse proxy that is also in a container. When your reverse proxy is also using bridge networking, you should not also publish port 8096 for Jellyfin. This results in excessive "context switching" between the bridge network and the host network. Not sure if that is that is the right term.
But this is OK.
If your reverse proxy is NOT a container, but runs directly on the host, the second image would result in pretty much the same thing. But would require you use "expose" for port 8096, which is similar to port forwarding on your router.
The idea is to reduce how many hops in and out of the bridge network your traffic makes.
But, I've only seen the first image cause connection stability issues for some users. I don't think there is a performance issue. No additional CPU overhead or limited throughput.
But this is OK.
If your reverse proxy is NOT a container, but runs directly on the host, the second image would result in pretty much the same thing. But would require you use "expose" for port 8096, which is similar to port forwarding on your router.
Code:
expose:
- 8096
The idea is to reduce how many hops in and out of the bridge network your traffic makes.
But, I've only seen the first image cause connection stability issues for some users. I don't think there is a performance issue. No additional CPU overhead or limited throughput.