Add wayland support

master
Simon Bruder 2020-08-25 13:19:30 +02:00
parent e4a40279bc
commit ef71705c2b
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
2 changed files with 9 additions and 7 deletions

View File

@ -18,6 +18,8 @@ FROM mcr.microsoft.com/dotnet/core/runtime-deps
RUN apt-get update \
&& apt-get -y install --no-install-recommends \
ffmpeg \
libegl1-mesa-dev \
libgbm1 \
libgl1 \
pulseaudio \
&& rm -rf /var/lib/apt/lists/*

14
run.sh
View File

@ -18,16 +18,16 @@ docker run \
--rm \
-it \
--name osu \
-e DISPLAY \
-e PULSE_SERVER=/run/user/$(id -u)/pulse/native \
-e PULSE_COOKIE=/run/pulse/cookie \
--device /dev/dri \
--group-add $(getent group video|cut -d: -f3) \
--group-add $(getent group audio|cut -d: -f3) \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v /run/user/$(id -u)/pulse/native:/run/user/$(id -u)/pulse/native \
-v "$HOME/.config/pulse/cookie:/run/pulse/cookie" \
--group-add $(getent group video|cut -d: -f3) \
-e PULSE_COOKIE=/run/pulse/cookie \
-e PULSE_SERVER=/run/user/$(id -u)/pulse/native \
-e WAYLAND_DISPLAY \
-e XDG_RUNTIME_DIR \
-v "$BASEDIR/data/:/home/osu/osu/" \
-v "$BASEDIR/import/:$BASEDIR/import/" \
-v "$HOME/.config/pulse/cookie:/run/pulse/cookie" \
-v "${XDG_RUNTIME_DIR}:${XDG_RUNTIME_DIR}" \
r.sbruder.de/osu \
$@