mirror of
https://github.com/GHOSCHT/franz.git
synced 2024-11-09 23:51:59 +01:00
Add jellyfin
This commit is contained in:
parent
7e171c168f
commit
5b2cc5ecb6
2 changed files with 24 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*.env
|
23
media/docker-compose.yml
Normal file
23
media/docker-compose.yml
Normal 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
|
Loading…
Reference in a new issue