audy / docker-sciruby-notebook

SciRuby + IRuby notebook in a Docker container

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker SciRuby/IRuby Notebook

Run an IRuby notebook with various SciRuby libraries.

Comes with:

Quickstart

  1. Install Docker. I use docker-machine on my laptop.

  2. Pull and run the SciRuby-Notebook image:

docker run \
  --publish=8888:8888 \
  --volume=$PWD/notebook:/notebooks \
  audy/sciruby-notebook

Point a browser to http://dockerhost:8888.

Development

# assuming you have Docker working

git clone https://github.com/audy/docker-sciruby-notebook
cd docker-sciruby-notebook
docker build . # note image_id

# start the notebook
docker run \
  --publish=8888:8888 \
  --volume=$PWD/notebooks:/notebooks \
  $image_id

LICENSE

Licensed under MIT. See license.md for details.

Contributions appreciated.

About

SciRuby + IRuby notebook in a Docker container

License:MIT License