-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
31 lines (26 loc) · 908 Bytes
/
compose.yaml
File metadata and controls
31 lines (26 loc) · 908 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
services:
audible-plex:
# Use published image from GitHub Container Registry
image: ghcr.io/mstrhakr/audplexus:latest
# Or build locally (uncomment and comment image line above)
# build: .
container_name: audplexus
ports:
- "8080:8080"
# Standard Docker/Compose user mapping (Linux hosts)
# user: "${UID:-1000}:${GID:-1000}"
volumes:
- ./config:/config
- /path/to/audiobooks:/audiobooks
- ./downloads:/downloads
environment:
- DATABASE_TYPE=sqlite
# Unraid-style user mapping
# - PUID=99
# - PGID=100
# Optional: recursively chown /config,/audiobooks,/downloads on startup
# - TAKE_OWNERSHIP=false
# - DATABASE_DSN=postgres://user:pass@postgres/audible?sslmode=disable
# - PLEX_URL=http://plex:32400
# - PLEX_TOKEN=
restart: unless-stopped