Posts for: #Awesome

Local Emby vs. Jellyfin hosting with docker

Set up Jellyfin and Emby - docker-compose

I am showing how Emby and Jellyfin can be hosted locally with docker and what to expect from it.

First I need two docker-compose.yaml files, one for Jellyfin:

Also Dockerhub

version: "3"

services:
  jellyfin:
    image: "jellyfin/jellyfin:latest"
    container_name: jellyfin
    user: 1000:1000
    restart: unless-stopped
    ports:
      - 8097:8096
    volumes:
      - ./config:/config
      - ./cache:/cache
      - ./media:/media
      # - ./media/share1:/mnt/movies
      # - ./media/share2:/mnt/music

And one for Emby:

Read more