-
Notifications
You must be signed in to change notification settings - Fork 109
Docker builds
Loup edited this page Sep 7, 2024
·
9 revisions
Install docker with your package manager like apt, brew, pacman, etc like pacman -S docker
Use the docker make targets like make docker-server-debug
for building docker images.This will build a image with name like bombsquad_server_debug.
We can check the name of images with docker images
and run them with docker run -it bombsquad_server_debug
We need to provide some env variables and volumes to the x11 server(this will also work with wayland)
xhost +local:docker
to allow docker to access the display and then
docker run -it -e DISPLAY=$DISPLAY \
-e PULSE_SERVER=unix:/run/user/1000/pulse/native \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v /run/user/1000/pulse:/run/user/1000/pulse \
--privileged=true --device /dev/snd:/dev/snd \
bombsquad_gui_release
ballistica.net • discord • blog • support