Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 1018 Bytes

README.md

File metadata and controls

42 lines (24 loc) · 1018 Bytes

Using Docker

This directory contains Dockerfile to make it easy to get up and via Docker.

Installing Docker

General installation instructions are on the Docker site, but we give some quick links here:

Running the container

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