Running X11 Apps inside Docker on Remote Server
Background Docker is fast-growing trend that I could no longer ignore, so I tried Docker running in a Linux server machine. Running server app is a breeze inside docker, but I need to run Pentaho Data Integration in the server, which uses X11 display. There is several references about forwarding X11 connection to a Docker container but none works for my setup, which has Quartz XServer running in Mac OS X laptop and Docker service running in a remote Linux Server. The usual way The steps to run X Windowed Applications in Docker containers can be read from Running GUI Apps with Docker and Alternatives to SSH X11 Forwarding for Docker Containers , which essentially is as follows : Forwarding DISPLAY environment variable to the container Forwarding directory /tmp/.X11-unix to the container I already tried such steps with no results, because I need to add another step before these two, that is forwarding X11 connection thru ssh connection to the serve...