forked from fashni/MxLRC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
26 lines (21 loc) · 855 Bytes
/
docker-compose.yml
File metadata and controls
26 lines (21 loc) · 855 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
services:
mxlrc:
container_name: mxlrc
image: ghcr.io/m4rc-xx/mxlrc:latest
restart: 'no'
# --- Volumes ---
# This is where the user's local music directory is "mounted" into the container.
# The user needs to adjust the path on the left to their actual path.
volumes:
- /media/pi/Harddrive/Music::/music # Example: Mounts a 'music' folder from the current directory
environment:
# The user's personal Musixmatch token
- MX_TOKEN= #Musixmatch Usertoken
# The directory inside the container to be scanned.
# Must match the target path in the "volumes" section.
- MUSIC_DIR=/music
# Time in seconds to wait between individual downloads.
- SLEEP_TIME=15
# Set to "true" to overwrite existing .lrc files.
# Otherwise, set to "false".
- UPDATE_FILES=false