-
-
Save thelastinuit/5db4fc7780143d6136a2184b597738b5 to your computer and use it in GitHub Desktop.
Docker macOS X11 display
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Script to install xquartz and set the DISPLAY variable correctly, find the listen port and add current ip to connect to X11. | |
#skip if you want, install xquartz | |
brew cask reinstall xquartz | |
#get ip | |
IP=$(ifconfig|grep -E inet.*broad|awk '{ print $2; }') | |
#open XQuartz | |
open -a XQuartz & | |
#Go to preference Security check allow network, restart : | |
read -p "Go to preference Security check allow network and press a key to continue" | |
kill -3 $(ps aux|grep -i Xquartz|awk '{ print $2} ' ); | |
open -a XQuartz & | |
read -p "Press a key when XQuartz is started" | |
#Find good port | |
p=0;for port in $(seq 0 10);do echo "Check :$((6000+$p)) (:$p)"; nc -w0 127.0.0.1 $((6000+$p)) && DISPLAY="$IP:$p"; let p=p+1; done; | |
#add xhost | |
echo "DISPLAY IS $DISPLAY"; | |
/usr/X11/bin/xhost + $IP | |
export DISPLAY=$DISPLAY | |
#Lauch your display | |
#docker run -e DISPLAY=$DISPLAY jess/firefox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment