首页 > 其他分享 >Jellyfin

Jellyfin

时间:2022-11-29 08:00:12浏览次数:24  
标签:compose cat Usage docker yml Jellyfin

Jellyfin

Usage

cat > docker-compose.yml <<-'EOF'
# https://jellyfin.org/docs/general/administration/installing#docker
# PORT: 8096
version: "3"

services:
  jellyfin:
    image: jellyfin/jellyfin
#     devices:
#       - "/dev/dri:/dev/dri"
    environment:
      - PUID=1000
      - PGID=1000
    network_mode: host
    restart: always
    volumes:
      - ./jellyfin/config/:/config/
      - ./jellyfin/cache/:/cache/
      - /path/to/media:/media/
      - /:/media/

EOF

标签:compose,cat,Usage,docker,yml,Jellyfin
From: https://www.cnblogs.com/newhappy98/p/16831384.html

相关文章