forked from Chevron7Locked/kima-hub
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
44 lines (42 loc) · 1.46 KB
/
docker-compose.prod.yml
File metadata and controls
44 lines (42 loc) · 1.46 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
# Lidify - Premium Self-Hosted Music Server
# All-in-One container with AI-powered vibe matching
#
# Features included:
# - Smart playlists with mood detection
# - Enhanced vibe matching (Essentia AI)
# - High-quality audio streaming
#
# Usage:
# 1. Edit the MUSIC_PATH below
# 2. Run: docker compose -f docker-compose.prod.yml up -d
# 3. Open http://localhost:3030
services:
lidify:
image: ${DOCKERHUB_USERNAME:-chevron7locked}/lidify:${VERSION:-latest}
container_name: lidify
ports:
- "${PORT:-3030}:3030"
volumes:
# REQUIRED: Path to your music library
- ${MUSIC_PATH:-/path/to/your/music}:/music
# Persistent data (database, cache, etc.)
- lidify_data:/data
environment:
- TZ=${TZ:-UTC}
- SESSION_SECRET=${SESSION_SECRET:-}
# Lidarr webhook callback URL - how Lidarr reaches Lidify when downloads complete
# Default uses host.docker.internal which works on most setups with extra_hosts below
# Override if using custom Docker networks: e.g., http://192.168.0.20:3030
- LIDIFY_CALLBACK_URL=${LIDIFY_CALLBACK_URL:-http://host.docker.internal:3030}
# Makes host.docker.internal work on Linux (already works on Docker Desktop)
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
healthcheck:
test: ["CMD", "node", "/app/healthcheck.js"]
interval: 30s
timeout: 10s
start_period: 60s
retries: 3
volumes:
lidify_data: