This directory contains Dockerfile
to make it easy to get up and via
Docker.
General installation instructions are on the Docker site, but we give some quick links here:
We are using Makefile
to simplify docker commands within make commands.
Build the container and start a Jupyter Notebook
$ make notebook
Build the container and start an iPython shell
$ make ipython
Build the container and start a bash
$ make bash
For GPU support install NVIDIA drivers (ideally latest) and nvidia-docker. Run using
$ make notebook GPU=0 # or [ipython, bash]
Mount a volume for external data sets
$ make DATA=~/mydata
Prints all make tasks
$ make help