Aller au contenu

Jellyfin

jellyfin

Service web de media center avec gestion des utilisateurs et scraping des films/séries/audio/livres

Installation

mkdir ./jellyfin ./jellyfin/cache ./jellyfin/config
cd jellyfin
nano docker-compose.yml
version: '3.5'
services:
  jellyfin:
    image: jellyfin/jellyfin
    container_name: jellyfin
    #user: uid:gid
    network_mode: 'host'
    volumes:
      - ./config:/config
      - ./cache:/cache
      - /home/mathgon/data:/media
    #  - /path/to/media2:/media2:ro
    restart: 'unless-stopped'
    # Optional - alternative address used for autodiscovery
    environment:
      - JELLYFIN_PublishedServerUrl=http://example.com
    # Optional - may be necessary for docker healthcheck to pass if running in host network mode
    extra_hosts:
      - "host.docker.internal:host-gateway"

Le service est ensuite 192.168.1.169:8096