Docker at O'Reilly

DEMO

The key steps are

VBoxManage controlvm boot2docker-vm natpf1 "ipython-notebook,tcp,127.0.0.1,8888,,8888"
sudo docker pull odewahn/python-data-analysis
  • Start the container, and be sure to expose port 8888
sudo docker run -i -t -p 8888:8888 odewahn/python-data-analysis /bin/bash
  • Once the container starts and your at the bash prompt, start the server with this command:
./start.sh
  • Go to localhost:8888 on your local browser