Skip to content

cmsc320/docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Introduction

This is a docker images based on the jupyter/scipy-notebook. But with extended niceties for the CMSC 320 course.

  • lxml
  • folium
  • nltk

Usage

If you would like to use the docker image. You should just pull it from docker hub:

docker pull jmct/cmsc320

Once you have the image pulled, you can create a container in the standard way:

docker run -it -v $PWD:/home/jovyan/notebooks  --rm -p 8888:8888 jmct/cmsc320

Building

Building the docker image locally is mostly for those working on the image or updating it:

docker build -t <name> .

Where <name> is whatever name you'd like to give the image as you test. (It can be useful to have slightly different variants with different names so that you can test the differences at the same time).

Sharing

Once you've found a version of the image you'd like to share you can do so as follows:

docker push jmct/cmsc320:latest

Here, latest is the tag we'd like to push to. We could use different tags for versioning, but I'm not sure how useful that is for us.

About

Docker images and associated utils/notes for the course.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published