diff --git a/jellyfin/docker-compose.yml b/jellyfin/docker-compose.yml new file mode 100644 index 0000000..080680a --- /dev/null +++ b/jellyfin/docker-compose.yml @@ -0,0 +1,17 @@ +version: "3" +services: + jellyfin: + image: lscr.io/linuxserver/jellyfin:latest + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1000 + - TZ=Asia/Shanghai + volumes: # map the physical volume to the container + - /home/ubuntu/infrastructure/jellyfin/config:/config + - /mnt/daily-storage/media/tvshows: /data/tvshows + - /mnt/daily-storage/media/movies:/data/movies + - /mnt/daily-storage/media/music:/data/music + ports: + - 8096:8096 + restart: always \ No newline at end of file