commit 39699af9fb0b1b6e93abff67e16a5071d3865cf9 Author: RomanNum3ral Date: Sat Jul 26 14:52:32 2025 +0000 Add docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..07391bd --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +services: + jellyfin: + image: jellyfin/jellyfin:latest + container_name: jellyfin + restart: unless-stopped + volumes: + - ./config:/config + - ./data:/data + - ./cache:/cache + ports: + - "8096:8096" # Jellyfin web UI + environment: + - PUID=1000 # Adjust according to your Pi user ID + - PGID=1000 # Adjust according to your Pi group ID + devices: + - /dev/dri:/dev/dri # For hardware acceleration (optional) + network_mode: host # Optionally use host networking if you have network performance issues \ No newline at end of file