Add jellyfin

This commit is contained in:
GHOSCHT 2022-08-27 11:31:42 +02:00
parent 7e171c168f
commit 5b2cc5ecb6
No known key found for this signature in database
GPG key ID: A35BD466B8871994
2 changed files with 24 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*.env

23
media/docker-compose.yml Normal file
View file

@ -0,0 +1,23 @@
version: "3.5"
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
ports:
- "80:80"
user: uid:gid
network_mode: "host"
volumes:
- jellyfin_data:/config
- jellyfin_cache:/cache
- /mnt:/media
restart: "unless-stopped"
volumes:
jellyfin_data:
name: jellyfin_data
external: true
jellyfin_cache:
name: jellyfin_cache
external: true