Turn git repositories into Jupyter-enabled Docker Images
 
 
 
 
 
 
Go to file
Min RK 3379eb020f Merge pull request #22 from jupyter/lab
Add JupyterLab to the default environment for venv + conda builders
2017-06-01 14:14:51 -07:00
repo2docker Bump version of image for default builder 2017-06-01 12:30:10 -07:00
s2i-builders
.dockerignore
.gitignore
COPYING.md
Dockerfile
MANIFEST.in
Makefile
README.md
builder.md
install-s2i.bash
setup.cfg
setup.py

README.md

jupyter-repo2docker

jupyter-repo2docker, a command line tool, builds a docker image from a git repository and can push the image to a docker registry.

Installation

To install from pypi, the python packaging index:

python3 -m pip install jupyter-repo2docker

To install from source:

git clone https://github.com/jupyterhub/jupyter-repo2docker.git
cd jupyter-repo2docker
python3 -m pip install .

Usage

To access help for the application:

jupyter-repo2docker -h

Technical Overview for Contributors

jupyter-repo2docker uses other tools (Source to Image or just docker) for doing the actual building of the image.

The repo2docker directory contains the application which detects which build method to use, and how to invoke that build method.

The s2i-builders directory contains builder images which can be used to provide custom conda and venv environments suitable for running JupyterHub.

Documentation

Creating a new builder