Local Emby vs. Jellyfin hosting with docker2020-03-24#awesome #hosting #media #self-hosted #streaming Set up Jellyfin and Emby - docker-composeI 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 Dockerhubversion: "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 CopyAnd one for Emby:Read more