Skip to main content

Install Jellyfin on Dcoker


**Jelly docker compose .yml** 

version: "2"
services:
  jellyfin:
    image: jellyfin/jellyfin
    container_name: jellyfin
    environment:
      - PUID=1001
      - PGID=1001
      - PST=America/Los Angeles
    volumes:
      - /mounted/local/storage/location:/config
      - /mounted/local/storage/location:/cache
      - /mounted/local/storage/location:/media
    ports:
      - 8092:8096
    restart: always