DockerComposeCollection

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit e895240d632bc19e0bdd058758a935e53b3642b6
parent 71d66c773ffd4ac56842f303efc8dfa319062e62
Author: 諒太 林 <ryouturn@gmail.com>
Date:   Fri, 16 Aug 2024 23:04:12 +0900

Merge branch 'main' of https://github.com/minerva-jupiter/DockerComposeCollection

Diffstat:
AJellyfin/docker-compose.yml | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/Jellyfin/docker-compose.yml b/Jellyfin/docker-compose.yml @@ -0,0 +1,20 @@ +--- +services: + jellyfin: + image: lscr.io/linuxserver/jellyfin:latest + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional + volumes: + - /path/to/library:/config + - /path/to/tvseries:/data/tvshows + - /path/to/movies:/data/movies + ports: + - 8096:8096 + - 8920:8920 #optional + - 7359:7359/udp #optional + - 1900:1900/udp #optional + restart: unless-stopped+ \ No newline at end of file