Skip to content

Commit

Permalink
Merge pull request #49 from jtpio/update-r2d-image
Browse files Browse the repository at this point in the history
Update repo2docker image
  • Loading branch information
jtpio authored Dec 2, 2021
2 parents 35e7e94 + 642141c commit 6cdb1ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Check out the official Docker documentation to know how to install Docker on you

## Create a virtual environment

Using `conda`:
Using `mamba` / `conda`:

```bash
conda create -n tljh-repo2docker -c conda-forge python nodejs
mamba create -n tljh-repo2docker -c conda-forge python nodejs
conda activate tljh-repo2docker
```

Expand Down Expand Up @@ -42,7 +42,7 @@ npm -g install configurable-http-proxy
User environments are built with `repo2docker` running in a Docker container. To pull the Docker image:

```bash
docker pull jupyter/repo2docker:master
docker pull quay.io/jupyterhub/repo2docker:main
```

## Run
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sudo add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/u
sudo apt update && sudo apt install -y docker-ce

# pull the repo2docker image
sudo docker pull jupyter/repo2docker:master
sudo docker pull quay.io/jupyterhub/repo2docker:main

# install TLJH
curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \
Expand Down
2 changes: 1 addition & 1 deletion tljh_repo2docker/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async def build_image(

config = {
"Cmd": cmd,
"Image": "jupyter/repo2docker:master",
"Image": "quay.io/jupyterhub/repo2docker:main",
"Labels": {
"repo2docker.repo": repo,
"repo2docker.ref": ref,
Expand Down

0 comments on commit 6cdb1ee

Please sign in to comment.