Initial commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2026-06-05 20:52:19 +02:00
commit 7e66738d90
2 changed files with 26 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM alpine:3.18
RUN apk add --no-cache pulseaudio pulseaudio-utils
RUN mkdir -p /root/.config/pulse && \
echo "load-module module-native-protocol-tcp auth-anonymous=1 listen=0.0.0.0 port=4713" > /root/.config/pulse/default.pa && \
echo "load-module module-always-sink" >> /root/.config/pulse/default.pa
# Force pulseaudio to run as a persistent foreground daemon
ENTRYPOINT ["pulseaudio", "--system=false", "--daemonize=no", "--realtime=no", "--log-target=stderr"]