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 VAAPI 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 # <PATH_TO_CONFIG> - Path where Unmanic will store config files
11 # <PATH_TO_LIBRARY> - Path where you store the files that Unmanic will scan
12 # <PATH_TO_ENCODE_CACHE> - Cache path for in-progress encoding tasks
13 #
14  
15  
16 version: '2.4'
17  
18 services:
19 unmanic:
20 container_name: unmanic
21 image: josh5/unmanic:latest
22 ports:
23 - 8888:8888
24 environment:
25 - PUID=<PUID>
26 - PGID=<PGID>
27 - TZ=<TZ>
28 volumes:
29 - <PATH_TO_CONFIG>:/config
30 - <PATH_TO_LIBRARY>:/library
31 - <PATH_TO_ENCODE_CACHE>:/tmp/unmanic
32 devices:
33 - /dev/dri:/dev/dri # For H/W transcoding using the VAAPI encoder