-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
45 lines (43 loc) · 1017 Bytes
/
Copy pathcompose.yaml
File metadata and controls
45 lines (43 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
services:
libation:
image: rmcrackan/libation:latest
container_name: libation
restart: unless-stopped
user: "${PUID:-3001}:${PGID:-3001}"
security_opt:
- no-new-privileges:true
volumes:
- libation-config:/config
- libation-db:/db
- libation-books:/data
environment:
- TZ=${TZ:-America/New_York}
- SLEEP_TIME=${SLEEP_TIME:-6h}
- LIBATION_CONFIG_DIR=/config
- LIBATION_DB_DIR=/db
- LIBATION_BOOKS_DIR=/data
- LIBATION_CREATE_DB=true
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
volumes:
libation-config:
driver: local
driver_opts:
type: none
device: /mnt/SSD/Containers/libation/config
o: bind
libation-db:
driver: local
driver_opts:
type: none
device: /mnt/SSD/Containers/libation/db
o: bind
libation-books:
driver: local
driver_opts:
type: none
device: /mnt/Data/Media/Audiobooks
o: bind