commit b5e8a8df46fe60439f5e2ea320a0e7d09d57ad2d Author: Matt Speer Date: Sat Dec 20 12:36:18 2025 -0600 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..658a15a --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Jellyfin + +# Description + +Jellyfin is a free, open-source media server that lets you organize, manage, and stream your personal collection of movies, TV shows, music, and photos. It supports multiple platforms, offering seamless access to your media library from any device, without the need for subscriptions. With a customizable interface and robust features, Jellyfin ensures complete control over your media experience. \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..91d1548 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,22 @@ +--- +version: "2.1" +services: + jellyfin: + image: lscr.io/linuxserver/jellyfin:latest + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + - JELLYFIN_PublishedServerUrl=192.168.4.20 #optional + volumes: + - /home/mattspeer/docker/jellyfin:/config + - /library/tv:/tv + - /library/movies:/movies + - /library/music:/music + ports: + - 8096:8096 +# - 8920:8920 #optional +# - 7359:7359/udp #optional +# - 1900:1900/udp #optional + restart: always \ No newline at end of file