Skip to content

Docker container with Jupyter, Matplotlib, Pandas, Tensorflow and Keras

License

Notifications You must be signed in to change notification settings

DisasterMasters/python_data_science

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Data Science container

CircleCI

This is fully ready Docker container with:

  • NumPy
  • Pandas
  • Sklearn
  • Matplotlib
  • Seaborn
  • pyyaml
  • h5py
  • Jupyter
  • Tensorflow
  • Keras
  • OpenCV 3

We're building this container on top of Ubuntu 16.04 Docker container (Dockerfile) and Anaconda Docker container (Dockerfile)

Running container

We'll use notebooks forlder to store Jupyter Notebooks:

mkdir notebooks

Run Docker container with the following command:

docker run -it -p 8888:8888 -p 6006:6006 -d -v $(pwd)/notebooks:/notebooks amaksimov/python_data_science

We're using following parameters:

  • -p 8888:8888 to export Jupyter Web interface
  • -p 6006:6006 to export TensorflowDashboard Web interface
  • -d to run Docker container in background
  • -v notebooks:/notebooks to mount just created notebooks folder Docker inside container

© Andrei Maksimov / ProgKids.ru

About

Docker container with Jupyter, Matplotlib, Pandas, Tensorflow and Keras

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 97.1%
  • Shell 1.6%
  • Other 1.3%