Skip to content

Instantly share code, notes, and snippets.

@iamteem
iamteem / docker_gui_apps_linux_mint
Last active September 20, 2016 19:22 — forked from nloadholtes/docker_gui_apps_linux_mint
Getting ubuntu 14/Linux Mint 17 to show GUI apps from Docker
Newer version of Ubuntu (and Linux mint) have .Xauthority and that will interfere with your ability to run X11 apps from a docker container. Here's how you get around that:
docker run -ti -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY --net=host -v $HOME/.Xauthority:/root/.Xauthority <and the rest of your docker string...>