Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 643 Bytes

File metadata and controls

37 lines (24 loc) · 643 Bytes

GUI containers

this repo includes several GUI application containers.

making these run on your system may require extra setup.

setup example for OSX

install xQuartz

brew cask install xQuartz

edit ssh config

sudo sed 's/\#X11Forwarding no/X11Forwarding yes/g' /etc/ssh/sshd_config 

restart sshd

/etc/init.d/sshd restart

add ip address to list of allowed remotes for xhost

xhost + $(ifconfig en0 | grep inet | awk '$1=="inet" {print $2}')

export DOCKER_DISPLAY env var from your .bash_profile

export DOCKER_DISPLAY=$(ifconfig en0 | grep inet | awk '$1=="inet" {print $2}'):0 \