-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (44 loc) · 1.59 KB
/
Copy pathdocker-compose.yml
File metadata and controls
45 lines (44 loc) · 1.59 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
services:
soulbeet:
build: .
container_name: soulbeet
restart: unless-stopped
ports:
- 9765:9765
environment:
- DATABASE_URL=sqlite:/data/soulbeet.db
# This path must match the volume mapping for downloads inside the container
- DOWNLOAD_PATH=/downloads
- SECRET_KEY=a_secret_key # Change this to a secure random key
- NAVIDROME_URL=http://localhost:4533 # Your Navidrome server URL
volumes:
- soulbeet_data:/data
# Map the download folder.
# IMPORTANT: This must be the SAME physical folder that slskd writes to.
- /path/to/your/downloads:/downloads
# Map your music libraries where beets will move files
- /path/to/your/music:/music
# Mount the beets config
# Leave commented to use the default configuration
# - ./beets_config.yaml:/app/beets_config.yaml
# Drop-in pure-Python beets plugins (see docs/beets-plugins.md):
# - ./my-plugins:/data/beets-plugins:ro
# depends_on:
# - slskd
# Optional: Slskd service if you want to run it together
# If you already have slskd running elsewhere, ensure Soulbeet can reach it via network
# slskd:
# image: slskd/slskd
# container_name: slskd
# environment:
# - SLSKD_REMOTE_CONFIGURATION=true
# - SLSKD_SLSK_USERNAME=xxx
# - SLSKD_SLSK_PASSWORD=xxx
# volumes:
# - /path/to/your/slskd_data:/app
# - /path/to/your/downloads:/app/downloads
# ports:
# - "5030:5030"
# restart: unless-stopped
volumes:
soulbeet_data: