kapsikkum-unmanic – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 ################
2 # Unmanic Docker Compose template
3 #
4 # Use this template when enabling NVENC Hardware accelerated encoding
5 #
6 # Variables that will need to be changed:
7 # <PUID> - User id for folder/file permissions
8 # <PGID> - Group id for folder/file permissions
9 # <TZ> - Your time zone, eg - Pacific/Auckland
10 # <NVIDIA_VISIBLE_DEVICES> - The GPUs that will be accessible to the container
11 # Options: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/user-guide.html#gpu-enumeration
12 # <PATH_TO_CONFIG> - Path where Unmanic will store config files
13 # <PATH_TO_LIBRARY> - Path where you store the files that Unmanic will scan
14 # <PATH_TO_ENCODE_CACHE> - Cache path for in-progress encoding tasks
15 #
16  
17  
18 version: '2.4'
19  
20 services:
21 unmanic:
22 container_name: unmanic
23 image: josh5/unmanic:latest
24 ports:
25 - 8888:8888
26 environment:
27 - PUID=<PUID>
28 - PGID=<PGID>
29 - TZ=<TZ>
30 - NVIDIA_VISIBLE_DEVICES=<NVIDIA_VISIBLE_DEVICES>
31 volumes:
32 - <PATH_TO_CONFIG>:/config
33 - <PATH_TO_LIBRARY>:/library
34 - <PATH_TO_ENCODE_CACHE>:/tmp/unmanic
35 runtime: nvidia # For H/W transcoding using the NVENC encoder