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

16
.drone.yml Normal file
View File

@@ -0,0 +1,16 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
registry: https://git.ivasoft.cz
username:
from_secret: repo_user
password:
from_secret: repo_pass
repo: git.ivasoft.cz/sw/docker-pulseaudio
tags:
- latest
- ${DRONE_TAG:-latest}

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"]