Initial
This commit is contained in:
commit
3a94065877
2 changed files with 29 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
config/
|
28
compose.yml
Normal file
28
compose.yml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
---
|
||||||
|
services:
|
||||||
|
jellyfin:
|
||||||
|
image: lscr.io/linuxserver/jellyfin:latest
|
||||||
|
container_name: jellyfin
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
- JELLYFIN_PublishedServerUrl=media.azw27.de #optional
|
||||||
|
volumes:
|
||||||
|
- ./config:/config
|
||||||
|
- /mnt/FS1:/data/FS1
|
||||||
|
- /mnt/FS2:/data/FS2
|
||||||
|
ports:
|
||||||
|
- 8096:8096
|
||||||
|
#- 8920:8920 #optional
|
||||||
|
- 7359:7359/udp #optional
|
||||||
|
- 1900:1900/udp #optional
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- nginx_proxy
|
||||||
|
- web
|
||||||
|
|
||||||
|
networks:
|
||||||
|
nginx_proxy:
|
||||||
|
external: true
|
||||||
|
web:
|
Loading…
Reference in a new issue