push the netflix
This commit is contained in:
commit
ac92199846
23
README.md
Normal file
23
README.md
Normal file
@ -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
|
18
docker-compose.yml
Normal file
18
docker-compose.yml
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user