POSTGRES_USER=lyra POSTGRES_PASSWORD=lyra POSTGRES_DB=lyra DATABASE_URL=postgresql://lyra:lyra@db:5432/lyra # 32 random bytes, base64. Generate with: openssl rand -base64 32 LYRA_SECRET_KEY=MDEyMzQ1Njc4OWFiY2RlZjAxMjM0NTY3ODlhYmNkZWY= # Host directory for the downloaded music library (bind-mounted into the worker at /music) MUSIC_DIR=./music # Host directory for per-job download staging (bind-mounted into the worker at /staging). # Defaults to MUSIC_DIR/.staging. Point this at a fast LOCAL disk when MUSIC_DIR is a network # share (SMB/NFS) so temporary downloads don't hammer the share; the final import copies the # finished album onto the library volume and swaps it in atomically. # STAGING_DIR=/srv/lyra-staging # Host directory where slskd (the external Soulseek daemon) writes FINISHED downloads, # bind-mounted into the worker at /slskd-downloads. The worker moves completed Soulseek # transfers out of here into staging, so this MUST be the same directory slskd downloads to. # Set this only once Lyra runs on the same host as slskd; until then Soulseek can search but # not deliver. Defaults to ./slskd-downloads (an empty local dir) so the stack still starts. # SLSKD_DOWNLOADS_DIR=/var/lib/slskd/downloads