Jellyfin Forum
Unreachable under localhost - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: Unreachable under localhost (/t-unreachable-under-localhost)



Unreachable under localhost - CaptainGoldfish - 2025-08-02

Hi I just tried to get the server up and running, which seems to work fine, but I cannot manage to access the webadmin of the jellyfin server. I tried to start the server with docker:

Code:
services:
  jellyfin:
    image: jellyfin/jellyfin:latest
    container_name: jellyfin
    user: 1000:1000
    network_mode: 'host'
    ports:
      - 8096:8096
    volumes:
      - K:/jellyfin/config:/config
      - K:/jellyfin/cache:/cache
      - type: bind
        source: K:/my-media
        target: /media
        read_only: true
    restart: 'unless-stopped'

after the server started, I tried to access http://localhost:8096 but I only get a connection refused from the browser. Just as if the port 8096 is not the correct one. What else do I have to do?


RE: Unreachable under localhost - CaptainGoldfish - 2025-08-03

The problem was the network_mode: 'host'. This caused the mapped ports not to be published.