wubr2000 / jem-docker

Docker container capable of running an iPython notebook server, for "Just Enough Math"

Home Page:http://JustEnoughMath.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jem-docker

Docker + IPython Notebook for Just Enough Math

See also Docker registry

Lifecycle

Provision:

Follow the steps to launch Docker on a EC2 node on AWS (at least an m3.medium with +16 GB storage) then:

sudo apt-get update ; sudo apt-get install -y lynx git emacs
git clone https://github.com/ceteri/jem-docker.git
cd jem-docker

Build:

sudo docker build --force-rm=true -t jem:latest .

Run:

sudo docker run -d -p 8888:8888 jem:latest

Troubleshoot:

sudo docker run -it jem:latest /bin/bash

Clean:

sudo docker ps -a --no-trunc | grep 'Exit' | awk '{print $1}' | xargs -r sudo docker rm
sudo docker images --no-trunc | grep none | awk '{print $3}' | xargs -r sudo docker rmi

Kudos

This is based on:


This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.

About

Docker container capable of running an iPython notebook server, for "Just Enough Math"

http://JustEnoughMath.com

License:Other


Languages

Language:Ruby 85.2%Language:Shell 14.8%