Turn git repositories into Jupyter-enabled Docker Images
 
 
 
 
 
 
Go to file
yuvipanda a94a857b5f Remove s2i script
s2i is no longer used
2017-07-29 16:41:50 -07:00
docs Add doc requirements 2017-06-02 13:13:31 -07:00
repo2docker Pass exit code of container back 2017-07-29 14:31:23 -07:00
s2i-builders Fix python2.7 buildpack to work properly 2017-07-28 19:35:17 -07:00
tests Add integration tests! 2017-07-29 16:11:02 -07:00
.dockerignore Update gitignore + add dockerignore 2017-05-09 20:43:27 -07:00
.gitignore Commit Julia's s2i assemble files! 2017-07-01 01:11:52 -07:00
.travis.yml Parallelize travis tests 2017-07-29 16:28:08 -07:00
COPYING.md Switch LICENSE to match rest of Jupyter projects 2017-05-27 18:24:10 -07:00
Dockerfile Cleanup dockerfile a little 2017-05-27 18:09:02 -07:00
MANIFEST.in update manifest for sdist 2017-05-24 17:21:11 -07:00
Makefile Add makefile for building and pushing image 2017-05-28 19:25:56 -07:00
README.md Update readme link 2017-06-02 13:15:16 -07:00
setup.cfg apply platform tag to wheels 2017-05-24 10:01:24 -07:00
setup.py Get rid of s2i packaging code from setup.py 2017-07-28 19:35:17 -07:00

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