mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-14 21:38:38 +00:00
ebc73c16d4
Dockerises the radio_conjurer.liq environment on Debian bookworm: - Dockerfile.radio builds Liquidsoap through opam with build args for OPAM_VERSION (static binary), OCAML_VERSION (default 4.14.2; 2.1.x needs OCaml 4.x - prod ran 4.13.0, pass it for parity) and LIQUIDSOAP_VERSION (default 2.1.4, matching the script) - LIQ_OPAM_PACKAGES installs exactly the features the script uses: mad+lame (mp3), cry (icecast), taglib (tags/replaygain), pulseaudio (mic/out), samplerate, inotify (watch-reload), ffmpeg - ffmpeg.pref verdict: the Pi pin forced Debian's FFmpeg 5.x family (libavcodec59...) over RPi OS repo builds because the ocaml-ffmpeg bindings are compiled against those sonames; bookworm ships them natively so the container needs no pin (documented, not copied) - pulse-access/audio group memberships baked in (were manual on the Pi); PULSE_MODE=internal runs a system-wide pulse with a null sink so the unmodified script works on a headless VM (mic = silence), host mode mounts the real socket, none for edited scripts - mounts mirror the script's hardcoded paths (/home/pi/Conjurer, /home/pi/MediaFolder/mp3) so radio_conjurer.liq runs unmodified; entrypoint seeds script+params on first run (never overwrites), creates missing playlists, seeds placeholder icecast credentials (loud warning) and generates a silent emergency mp3 when the single() file is missing - compose.radio.yaml: extra_hosts maps the script's host="radio" to ICECAST_HOST_IP; exposes 54321 (bot's RADIO_HARBOR /skip) and 9999 - docs: radio section with build args, pulse modes and the ffmpeg.pref / groups verdicts Part 2 of this PR (splitting bot<->radio comms out of the musician into a radio+betoniarka container) follows on this branch. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
40 lines
1.7 KiB
YAML
40 lines
1.7 KiB
YAML
# Radio (Liquidsoap) VM. Run from the repository root:
|
|
# docker compose -f docker/compose.radio.yaml up -d --build
|
|
#
|
|
# Version pins are build args - override via environment, e.g.:
|
|
# LIQUIDSOAP_VERSION=2.1.4 OCAML_VERSION=4.13.0 \
|
|
# docker compose -f docker/compose.radio.yaml up -d --build
|
|
services:
|
|
conjurer-radio:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile.radio
|
|
args:
|
|
OPAM_VERSION: ${OPAM_VERSION:-2.1.5}
|
|
OCAML_VERSION: ${OCAML_VERSION:-4.14.2}
|
|
LIQUIDSOAP_VERSION: ${LIQUIDSOAP_VERSION:-2.1.4}
|
|
image: conjurer-radio:latest
|
|
container_name: conjurer-radio
|
|
restart: unless-stopped
|
|
environment:
|
|
# internal = null-sink pulse inside the container (headless VM default)
|
|
# host = mount the host pulse socket below and set PULSE_SERVER
|
|
PULSE_MODE: ${PULSE_MODE:-internal}
|
|
# PULSE_SERVER: unix:/tmp/pulseaudio.socket
|
|
extra_hosts:
|
|
# radio_conjurer.liq streams to host="radio" - point it at icecast.
|
|
- "radio:${ICECAST_HOST_IP:-192.168.1.12}"
|
|
ports:
|
|
- "54321:54321" # harbor /skip - the bot's CONJURER_RADIO_HARBOR
|
|
- "9999:9999" # interactive harbor (keep LAN-only!)
|
|
volumes:
|
|
# Playlists, logs, script.params, icecast_credentials.json, the script
|
|
# itself (seeded on first run) - paths mirror the ones hardcoded in
|
|
# radio_conjurer.liq so it runs unmodified.
|
|
- /srv/radio/data:/home/pi/Conjurer
|
|
# The mp3 library. Writable because the entrypoint seeds a silent
|
|
# emergency-fallback mp3 when the hardcoded single() file is missing.
|
|
- /srv/radio/music:/home/pi/MediaFolder/mp3
|
|
# PULSE_MODE=host: uncomment and adjust
|
|
# - /tmp/pulseaudio.socket:/tmp/pulseaudio.socket
|