This is docker image for Python3, Jupyter and Pandas, based on alpine linux
You can run the command below:
docker run -d --name jupyter -p 8888:8888 -v YOU_VOL_FOLDER:/opt playniuniu/jupyter-pandas
and visit http://localhost:8888 for jupyter notebook
You can use the command in jupyter to plot images
%matplotlib notebook
import matplotlib.pyplot as plt
plt.plot([1,2,3])
and you can see the imags below: