-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (53 loc) · 1.81 KB
/
Copy pathdocker-compose.yml
File metadata and controls
55 lines (53 loc) · 1.81 KB
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
46
47
48
49
50
51
52
53
54
55
services:
chaptarr:
image: chaptarr/chaptarr:latest
container_name: chaptarr
environment:
- PUID=1000
- PGID=1000
# Optional: use 002 when multiple containers/users share the same media group.
# - UMASK=002
- TZ=America/New_York # Change to your timezone
# Optional: Use external PostgreSQL instead of SQLite (create DBs separately)
# - Chaptarr__Postgres__Host=postgres
# - Chaptarr__Postgres__Port=5432
# - Chaptarr__Postgres__User=chaptarr
# - Chaptarr__Postgres__Password=changeme
# - Chaptarr__Postgres__MainDb=chaptarr-main
# - Chaptarr__Postgres__LogDb=chaptarr-log
# - Chaptarr__Postgres__CacheDb=chaptarr-cache
volumes:
# If ./config doesn't exist, Docker will create it as root:root; create it first (or fix ownership) so it matches PUID/PGID.
- ./config:/config
- /path/to/audiobooks:/audiobooks # Change to your audiobook path
- /path/to/ebooks:/ebooks # Change to your ebook path
- /path/to/downloads:/downloads # Change to your download path
ports:
- 8789:8789
restart: unless-stopped
# Optional: Add your download client
# qbittorrent:
# image: lscr.io/linuxserver/qbittorrent:latest
# container_name: qbittorrent
# environment:
# - PUID=1000
# - PGID=1000
# - TZ=America/New_York
# - WEBUI_PORT=8080
# volumes:
# - ./qbittorrent/config:/config
# - /path/to/downloads:/downloads
# ports:
# - 8080:8080
# - 6881:6881
# - 6881:6881/udp
# restart: unless-stopped
# Optional: Add proxy for MAM
# flaresolverr:
# image: ghcr.io/flaresolverr/flaresolverr:latest
# container_name: flaresolverr
# environment:
# - LOG_LEVEL=info
# ports:
# - 8191:8191
# restart: unless-stopped