Saltar al contenido
TutorialesServidores multimediaPrincipiante

Cómo montar un servidor multimedia Jellyfin

Instala Jellyfin con Docker y transmite tus películas, series y música gratis a todos tus dispositivos.

por HomeServersGuide Team1 min de lectura

Jellyfin is a free, open-source media server with no subscriptions or telemetry. This tutorial gets it running with Docker.

Prerequisites

  • A home server with Docker installed
  • Your media organised into folders (e.g. /mnt/media/movies, /mnt/media/tv)

Step 1: Create the Compose file

services:
  jellyfin:
    image: jellyfin/jellyfin:latest
    container_name: jellyfin
    ports:
      - "8096:8096"
    volumes:
      - ./config:/config
      - ./cache:/cache
      - /mnt/media:/media:ro
    restart: unless-stopped
    # For Intel/AMD hardware transcoding, expose the GPU:
    # devices:
    #   - /dev/dri:/dev/dri

Step 2: Start Jellyfin

docker compose up -d

Step 3: Run the setup wizard

Open http://your-server-ip:8096 and follow the wizard:

  1. Create an admin account.
  2. Add your media libraries, pointing them at /media/movies, /media/tv, etc.
  3. Let Jellyfin scan and fetch artwork and metadata.

Step 4: Install the apps

Jellyfin has apps for Android, iOS, Android TV, Fire TV, and more. Sign in with your server address and account.

Step 5: Enable hardware transcoding (optional)

If your CPU has an integrated GPU (Intel Quick Sync is excellent), uncomment the devices block above and enable hardware acceleration under Dashboard → Playback. This lets you transcode multiple streams at low power — for free, unlike Plex.

Step 6: Access it remotely and safely

Use a VPN like Tailscale to stream from outside your home without exposing Jellyfin to the internet.

Plex or Jellyfin?

Both are great. See our detailed Plex vs Jellyfin comparison to decide.

Enjoy your own private, ad-free streaming service.

Artículos relacionados

TutorialesServidores multimediaIntermedio

How to Install Immich Photo Backup

Replace Google Photos with self-hosted Immich and mobile auto-upload.

1 min de lectura
ComparativasServidores multimediaPrincipiante

Plex vs Jellyfin

Plex vs Jellyfin comparados: funciones, transcodificación por hardware, privacidad, coste y cuál te conviene.

5 min de lectura
TutorialesAutomatizaciónPrincipiante

How to Install Uptime Kuma

Monitor homelab services and get alerts when something goes down.

1 min de lectura