From ac92199846d3da153a69bd2979c67784a30d9bd7 Mon Sep 17 00:00:00 2001 From: GregLebreton Date: Sat, 16 Jul 2022 21:49:04 +0200 Subject: [PATCH] push the netflix --- README.md | 23 +++++++++++++++++++++++ docker-compose.yml | 18 ++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 README.md create mode 100644 docker-compose.yml diff --git a/README.md b/README.md new file mode 100644 index 0000000..81fd99e --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# JELLYFIN DOCKERIZED! + +Véritable Media server/streamer open source via Docker +Si vous chercher une alternative à Plex ou Kodi gratuit, vous l'avez trouvé! + +documentation: https://jellyfin.org/docs/ + +## CONFIGURATION + +Modifier les "path" vers vos dossiers contenant les médias (films, séries, musique) + +## USAGE + +```bash +docker-compose up -d +``` + +Visiter localhost:8096 pour finir la configuration + +Pour les clients: +* Android: https://play.google.com/store/apps/details?id=org.jellyfin.mobile +* Android TV: https://play.google.com/store/apps/details?id=org.jellyfin.androidtv +* IOS: https://apps.apple.com/fr/app/jellyfin-mobile/id1480192618 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a144c67 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +--- +version: "2.1" +services: + jellyfin: + image: ghcr.io/linuxserver/jellyfin + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Paris + volumes: + - ./config:/config + - /PATH/TO/SERIES:/data/tvshows + - /PATH/TO/FILMS:/data/movies + - /PATH/TO/MUSIC:/data/music + ports: + - 8096:8096 + restart: unless-stopped