2023-12-22 19:51:58 +00:00
|
|
|
---
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
jellyfin:
|
|
|
|
user: 1000:1000
|
|
|
|
restart: unless-stopped
|
|
|
|
image: jellyfin/jellyfin:latest
|
|
|
|
container_name: jellyfin
|
|
|
|
volumes:
|
|
|
|
- ./config:/config
|
|
|
|
- ./cache:/cache
|
2024-06-05 03:35:11 +00:00
|
|
|
- ../../documents/media:/media
|
2023-12-22 19:51:58 +00:00
|
|
|
network_mode: 'host'
|
2024-06-05 03:35:11 +00:00
|
|
|
ports:
|
|
|
|
- 8096:9096
|
2023-12-22 19:51:58 +00:00
|
|
|
# Requires packages:
|
|
|
|
# nvidia-contianer-toolkit
|
2024-06-05 03:35:11 +00:00
|
|
|
# runtime: nvidia
|
|
|
|
# deploy:
|
|
|
|
# resources:
|
|
|
|
# reservations:
|
|
|
|
# devices:
|
|
|
|
# - capabilities: [gpu]
|
2023-12-22 19:51:58 +00:00
|
|
|
|