Run pulseaudio in a Docker container
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
Andy 0c34af15ec
trivial
hace 6 años
Dockerfile trivial hace 6 años
LICENSE changed license; changed exit idle time; add security_opt seccomp parameter hace 8 años
README.md trivial hace 6 años
avahi-daemon.conf build pulseaudio from sources hace 6 años
client.conf build pulseaudio from sources hace 6 años
daemon.conf build pulseaudio from sources hace 6 años
default.pa build pulseaudio from sources hace 6 años
entrypoint.sh build pulseaudio from sources hace 6 años

README.md

Pulseaudio in Docker

Build and run it

docker build -t andrey01/pulseaudio .
docker run --name pulseaudio --rm -ti --device /dev/snd andrey01/pulseaudio

Use it

PULSE_SERVER=$(docker inspect pulseaudio -f '{{.NetworkSettings.IPAddress }}'):4713 mpv film.avi

Client setup for zeroconfig auto discovery

If you want the pulseaudio to automatically discover the published sinks, make sure /etc/pulse/default.pa has the following line:

load-module module-zeroconf-discover

Then restart pulseaudio:

pulseaudio --kill

Troubleshooting

Enter the namespace of a running container

sudo nsenter -a -t $(docker inspect -f '{{ .State.Pid }}' pulseaudio)