Since Fedora 34, pulseaudio was replaced with pipewire. I used a pulseaudio socket to get sound from containers, which was the most secure way. So, I would like now to set pipewire to handle audio in container, but I can't find the way...
I'm trying the simplest way right now, sharing snd device, without socket:
Launch fedora 34 container:
podman run -it --device /dev/snd fedora
Create user and add it to audio group:
useradd usertest -u 1000 -m -p ''
usermod -aG audio usertest
Install paquages:
dnf -y install pipewire alsa-utils pulseaudio-utils
systemctl start --user pipewire-pulse.service
When I start it, there is a DBUS error, because DBUS isn't running on container
And with user, pactl info
returns this error:
Connection failure: Connection refused
pa_context_connect() failed: Connection refused
Or would it be possible to get something similar to a pulseaudio socket with pipewire?
I guess you don't need to run the full-fledged pipewire server in a container, you just need to have it installed. It contains client-side libs you'll need. If you have a Pipewire server running on your host already, we just need to connect to it from the container.
I needed exactly what you wanted (to run software inside of container that will be able to play sound through the host soundcard), and here's how I've done it - https://stackoverflow.com/a/75775875/1321921
Few small diffs to your setup:
docker
, notpodman
alpine
docker image, not thefedora
oneI tried it out with
fedora
docker image - and it worked just fine:-v /run/user/1000/pipewire-0:/tmp/pipewire-0
-e XDG_RUNTIME_DIR=/tmp
)The only thing I don't like is that in Fedora, the
pipewire
package brings a lot of hard dependencies with it. That didn't happen to Alpine. Probably there's another way exist, to have pipewire client side only installed to Fedora, without bringing all that clutter, but still.