Sign inSign up

bbeck/slack

By bbeck

Updated almost 8 years ago

Slack with pulseaudio.

Image
0

1.2K

bbeck/slack repository overview

Run spotify in a docker container with pulseaudio.

This container uses Jess Frazelle's slack docker image as the base container.

This container can be invoked like this:

# Make sure the config directory exists
if [[ ! -d ${HOME}/.config/slack ]]; then
  mkdir -p ${HOME}/.config/slack
  chmod 700 ${HOME}/.config/slack
fi

# Create a temporary pulseaudio socket for slack to use
SOCKET="$(
  pactl load-module             \
    module-native-protocol-unix \
    auth-anonymous=1            \
    socket=/tmp/.pulseaudio-slack-$(id -u)
)"

# Make sure we remove the temporary socket when exiting
trap "pactl unload-module '${SOCKET}'" EXIT

# The id of the slack user in the container.  This should remain consistent
# with the id in the Dockerfile.
USER_ID=1000

docker run --rm                                                        \
  --name slack                                                         \
  -v /etc/localtime:/etc/localtime:ro                                  \
  -v /etc/machine-id:/etc/machine-id                                   \
  -v /tmp/.pulseaudio-slack-$(id -u):/tmp/.pulseaudio-slack            \
  -v /tmp/.X11-unix:/tmp/.X11-unix                                     \
  -v /var/lib/dbus:/var/lib/dbus                                       \
  -v /var/run/dbus:/var/run/dbus                                       \
  -v /var/run/user/$(id -u):/var/run/user/${USER_ID}                   \
  -v ${HOME}/.config/slack:/home/slack/.config/Slack                   \
  -e DBUS_SESSION_BUS_ADDRESS="unix:path=/var/run/user/${USER_ID}/bus" \
  -e DISPLAY=unix${DISPLAY}                                            \
  -e PULSE_SERVER=/tmp/.pulseaudio-slack                               \
  --device /dev/dri                                                    \
  --device /dev/video0                                                 \
  --group-add video                                                    \
  --ipc host                                                           \
bbeck/slack

Tag summary

Content type

Image

Digest

Size

147.5 MB

Last updated

almost 8 years ago

docker pull bbeck/slack