Last active
April 12, 2025 23:46
-
-
Save pingkunga/69fd1b82003a79ac9a1babe8f2843ffc to your computer and use it in GitHub Desktop.
jellyfin_hw_tran
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
jellyfin: | |
image: jellyfin/jellyfin:latest | |
container_name: Jellyfin-HW-TRAN | |
# 1026:100 check on host > ls -n /volume1/docker/jellyfin_hw_tran | |
# user: 1026:100 | |
environment: | |
TZ: Asia/Bangkok | |
volumes: | |
- /volume1/docker/jellyfin_hw_tran/config:/config:rw | |
- /volume1/docker/jellyfin_hw_tran/cache:/cache:rw | |
- /volume1/docker/jellyfin_hw_tran/logs:/logs:rw | |
- /volume1/MovieSeries:/media:rw | |
- /volume1/MoviesSeries18:/media18:rw | |
devices: | |
- /dev/dri/renderD128:/dev/dri/renderD128 | |
- /dev/dri/card0:/dev/dri/card0 | |
restart: on-failure:5 | |
ports: | |
- 8096:8096 | |
- 8920:8920 #optional | |
network_mode: host | |
deploy: | |
resources: | |
limits: | |
#cpus: "0.5" # Comment this line, if use on Synology NAS, NanoCPUs can not be set | |
memory: "3G" | |
reservations: | |
#cpus: "0.25" # Comment this line, if use on Synology NAS, NanoCPUs can not be set | |
memory: "512M" | |
cpuset: "0,1" # Alternative way for Synology NAS, NanoCPUs can not be set | |
# Note | |
# https://jellyfin.org/docs/general/installation/synology |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment