mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
## Description **What(what issue does this code solve/what feature does it add):** We do not need the ffmpeg and recorder all sitting differently, as this will increase our docker image size **How(how does it solve it):** ## Required Checklist: - [ ] I have added any necessary documentation and comments in my code (where appropriate) - [ ] I have added tests to make sure my code runs in all contexts ## Further comments
17 lines
748 B
Bash
17 lines
748 B
Bash
#This fixes the error where x11-apps in docker cannot seem to access the hosts DISPLAY server
|
|
# Error: No protocol specified
|
|
# Error: Can't open display: :10.0
|
|
#https://askubuntu.com/a/1470341 //Run it on host OS
|
|
xhost +Local:*
|
|
xhost
|
|
|
|
#Fun fact Weston won't run if you do not have Wayland running on the host (i have yet to try running with Xwayland inside the container)
|
|
#Run weston using your host's X11 display server
|
|
weston --backend=x11-backend.so
|
|
|
|
#Run inside the terminal of the weston you just created... cool right?
|
|
weston --backend=wayland-backend.so
|
|
|
|
#Run
|
|
docker run --gpus all --entrypoint /bin/bash --rm -it -v $(pwd):/games -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY --cap-add=SYS_NICE --cap-add=SYS_ADMIN recorder
|