Turn git repositories into Jupyter-enabled Docker Images
 
 
 
 
 
 
Go to file
Tim Head d3c0aec374 Add a "checklist" for PRs to our contributing guide 2018-10-09 10:09:25 +02:00
docker Issue #388 - Use bash echo for git-credential-env 2018-09-06 11:19:57 -07:00
docs Change FAQ format to reStructuredText 2018-10-08 15:38:24 +02:00
repo2docker Add an edit-mode option 2018-10-05 14:08:51 +02:00
tests Move test fixture to conftest.py 2018-10-08 15:36:45 +02:00
travis
.codecov.yml Add codecov configuration to enable PR comments 2018-03-22 17:23:12 +01:00
.dockerignore
.gitattributes Add versioneer support 2018-07-02 22:03:53 +02:00
.gitignore ignore pytest-cache 2018-07-20 10:22:56 -07:00
.travis.yml Make travis fail when pytest fails 2018-09-15 08:53:03 +02:00
CONTRIBUTING.md Add a "checklist" for PRs to our contributing guide 2018-10-09 10:09:25 +02:00
Dockerfile
LICENSE
MANIFEST.in Add versioneer support 2018-07-02 22:03:53 +02:00
Makefile
README.md Fix typos, half sentences and some capitalization 2018-08-20 13:34:19 +02:00
dev-requirements.txt
readthedocs.yml
setup.cfg Add versioneer support 2018-07-02 22:03:53 +02:00
setup.py Modify short project description 2018-09-09 17:20:52 +02:00
versioneer.py Add versioneer support 2018-07-02 22:03:53 +02:00

README.md

jupyter-repo2docker

Build Status Documentation Status

jupyter-repo2docker takes as input a repository source, such as a GitHub repository. It then builds, runs, and/or pushes Docker images built from that source.

See the repo2docker documentation for more information.

Prerequisites

  1. Docker to build & run the repositories. The community edition is recommended.
  2. Python 3.4+.

Supported on Linux and macOS. See documentation note about Windows support.

Installation

To install from PyPI, the python packaging index, using pip:

pip install jupyter-repo2docker

To install from source:

git clone https://github.com/jupyter/repo2docker.git
cd repo2docker
pip install -e .

Usage

The core feature of repo2docker is to fetch a repository (from GitHub or locally), build a container image based on the specifications found in the repository & optionally launch a local Jupyter Notebook you can use to explore it.

Note that Docker needs to be running on your machine for this to work.

Example:

jupyter-repo2docker https://github.com/norvig/pytudes

After building (it might take a while!), it should output in your terminal something like:

    Copy/paste this URL into your browser when you connect for the first time,
    to login with a token:
        http://0.0.0.0:36511/?token=f94f8fabb92e22f5bfab116c382b4707fc2cade56ad1ace0

If you copy paste that URL into your browser you will see a Jupyter Notebook with the contents of the repository you had just built!

For more information on how to use repo2docker, see the usage guide.

Repository specifications

Repo2Docker looks for configuration files in the source repository to determine how the Docker image should be built. It is philosophically similar to Heroku Build Packs.

For a list of the configuration files that repo2docker can use, see the usage guide.