forked from diego-ninja/lrcget-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (31 loc) · 987 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (31 loc) · 987 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
version: '3.8'
services:
lrcget:
build: .
container_name: lrcget-cli
environment:
# Database configuration
- LRCGET_DATABASE_PATH=/data/lrcget.db
# LRCLIB configuration
- LRCGET_LRCLIB_INSTANCE=https://lrclib.net
# Optional: Path to local LRCLIB database for faster searches
# - LRCGET_LRCLIB_DATABASE_PATH=/data/lrclib.db
# Behavior configuration
- LRCGET_SKIP_TRACKS_WITH_SYNCED_LYRICS=true
- LRCGET_SKIP_TRACKS_WITH_PLAIN_LYRICS=false
- LRCGET_TRY_EMBED_LYRICS=false
- LRCGET_SHOW_LINE_COUNT=true
# Logging
- RUST_LOG=info
volumes:
# Persistent data storage
- lrcget_data:/data
# Mount your music library (read-only recommended)
- /path/to/your/music:/music:ro
restart: unless-stopped
# Remove this line if you want the container to exit after running once
tty: true
stdin_open: true
volumes:
lrcget_data:
driver: local