Guest User

Untitled

a guest
Aug 11th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.56 KB | Software | 0 0
  1. version: "3.8"
  2. services:
  3.   jellyfin:
  4.     image: jellyfin/jellyfin
  5.     container_name: jellyfin
  6.     user: 1001:113
  7.     network_mode: 'host'
  8.     restart: 'unless-stopped'
  9.     volumes:
  10.      - ${CONFIG_STORAGE}:/config
  11.       - ${CACHE_STORAGE}:/cache
  12.       - ${DATA_STORAGE}:/media
  13.     environment:
  14.      - NVIDIA_VISIBLE_DEVICES=all
  15.       - NVIDIA_DRIVER_CAPABILITIES=all
  16.     runtime: nvidia
  17.     deploy:
  18.       resources:
  19.         reservations:
  20.           devices:
  21.             - driver: nvidia
  22.               count: all
  23.               capabilities: [gpu]
Advertisement
Add Comment
Please, Sign In to add comment