[add] jellyfin
This commit is contained in:
parent
bfd0979a07
commit
56f1fc1c76
3 changed files with 32 additions and 0 deletions
8
jellyfin/cache/.gitignore
vendored
Normal file
8
jellyfin/cache/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
# .gitignore sample
|
||||
###################
|
||||
|
||||
# Ignore all files in this dir...
|
||||
*
|
||||
|
||||
# ... except for this one.
|
||||
!.gitignore
|
8
jellyfin/config/.gitignore
vendored
Normal file
8
jellyfin/config/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
# .gitignore sample
|
||||
###################
|
||||
|
||||
# Ignore all files in this dir...
|
||||
*
|
||||
|
||||
# ... except for this one.
|
||||
!.gitignore
|
16
jellyfin/docker-conpose.yml
Normal file
16
jellyfin/docker-conpose.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
version: "3.5"
|
||||
services:
|
||||
jellyfin:
|
||||
image: jellyfin/jellyfin
|
||||
container_name: jellyfin
|
||||
user: uid:gid
|
||||
network_mode: "host"
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./cache:/cache
|
||||
- /path/to/media:/media
|
||||
- /path/to/media2:/media2:ro
|
||||
restart: "unless-stopped"
|
||||
# Optional - alternative address used for autodiscovery
|
||||
environment:
|
||||
- JELLYFIN_PublishedServerUrl=http://example.com
|
Loading…
Add table
Reference in a new issue