Initial commit

This commit is contained in:
sonny 2024-08-03 16:43:30 +02:00
commit ab42ecdbbc
4 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,23 @@
# {{ ansible_managed }}
version: '3.5'
services:
jellyfin:
image: {{ image_tag }}
container_name: jellyfin
user: {{ ansible_user_uid }}:{{ ansible_user_gid }}
volumes:
- {{ configuration_dir }}:/config
- {{ cache_dir }}:/cache
- type: bind
source: {{ media_dir }}
target: /media
restart: 'unless-stopped'
ports:
- 8096:8096/tcp
- 1900:1900/udp
- 7359:7359/udp
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0