Cant access docker although port is exposed

Here is my docker compose -

services:
  jellyfin:
    image: jellyfin/jellyfin
    container_name: jellyfin
    user: 0:0
    ports:
      - '7574:7574'
    volumes:
      - /mnt/docker/jellyfin/config:/config
      - /mnt/docker/jellyfin/cache:/cache
      - type: bind
        source: /mnt/Vol1/media
        target: /media
      - type: bind
        source: /mnt/Vol1/media
        target: /media2
        read_only: true
    restart: 'unless-stopped'
    # Optional - may be necessary for docker healthcheck to pass if running in host network mode

    extra_hosts:
      - 'host.docker.internal:host-gateway'

When I go to my tailscaleip:7574 I get failed to connect to server error on the browser

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.