2023-12-22 19:51:58 +00:00
|
|
|
services:
|
|
|
|
jellyfin:
|
2024-08-14 05:41:06 +00:00
|
|
|
# GID might need to be manuall set (id -g)
|
|
|
|
user: ${UID}:${GID}
|
2023-12-22 19:51:58 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
image: jellyfin/jellyfin:latest
|
|
|
|
container_name: jellyfin
|
|
|
|
volumes:
|
|
|
|
- ./config:/config
|
|
|
|
- ./cache:/cache
|
2024-08-14 05:41:06 +00:00
|
|
|
- ${ZFS_POOL}/media:/media
|
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
|
|
|
|