I have a certain setting of Python in an docker image named deep
. I used to run python code
docker run --rm -it -v \"$PWD\":/app -w /app deep python
Interestingly, I found quite nice and thorough solutions in ROS community. http://wiki.ros.org/docker/Tutorials/GUI
For my problem, my final choice is the second way in the tutorial:
docker run --rm -it \
--user=$(id -u) \
--env="DISPLAY" \
--workdir=/app \
--volume="$PWD":/app \
--volume="/etc/group:/etc/group:ro" \
--volume="/etc/passwd:/etc/passwd:ro" \
--volume="/etc/shadow:/etc/shadow:ro" \
--volume="/etc/sudoers.d:/etc/sudoers.d:ro" \
--volume="/tmp/.X11-unix:/tmp/.X11-unix:rw" \
deepaul python test.python
As far as I know, there are two ways you can to this:
if __name__ == '__main__'
to the new notebook if necessary. Finally, run the code in Jupyter, the image will show up below the code on the web page. matplotlib
works smoothly with Jupyter. If you are willing to open a browser to run the code and view the result, this is the best way I can think of.matplotlib
headlessly. That means to remove all the code such as plt.show()
. Use plt.savefig
to save figures to filesystem instead of showing it in an opened window. Then you can check out these saved images using any image viewer.I tried mounting X11 to docker images some time ago, like YW P Kwon's answer. It will only work on systems that use X11, and you can do this only on a local machine (I am not sure if X11 forward works). It is also not recommended in docker. While with the Jupyter and Headless solution, you can run your code on any platform. But you do need to modify your code a little bit.