kapsikkum-unmanic – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | ################ |
2 | # Test environment Docker Compose file |
||
3 | # |
||
4 | # Use this compose file when mounting a network drive as your library |
||
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 | # <PATH_TO_CONFIG> - Path where unmanic will store config files |
||
10 | # <PATH_TO_ENCODE_CACHE> - Cache path for in-progress encoding tasks |
||
11 | # <REMOTE_IP> - Remote IP address of CIFS mount |
||
12 | # <PATH_TO_LIBRARY> - Path in remote machine to be mounted as your library |
||
13 | # <USERNAME> - Remote mount username |
||
14 | # <PASSWORD> - Remote mount password |
||
15 | # |
||
16 | |||
17 | |||
18 | version: '1' |
||
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 | volumes: |
||
30 | - <PATH_TO_CONFIG>:/config |
||
31 | - cifs_mount:/library |
||
32 | - <PATH_TO_ENCODE_CACHE>:/tmp/unmanic |
||
33 | |||
34 | volumes: |
||
35 | cifs_mount: |
||
36 | driver: local |
||
37 | driver_opts: |
||
38 | type: cifs |
||
39 | device: //<REMOTE_IP>/<PATH_TO_LIBRARY> |
||
40 | o: "username=<USERNAME>,password=<PASSWORD>,vers=3.0,uid=<PUID>,gid=<PGID>" |