Create a custom user image for your hub#

This section describes how you can create a custom user image for your community’s hub. It uses this hub-user-image-template repository to help you get started.

1. Use the template repository#

Create a new repository for your user image from the hub-user-image-template repository.

  1. Go to the hub-user-image-template repository.

  2. Click the Use this template button located at the top of this repository’s GitHub page.

    Use this template
  3. This will generate a copy of the repository that you can modify as you wish.

2. Connect the new repository to quay.io#

The image repository is bundled with a GitHub Action that will build a Docker Image from the configuration you’ve defined in the repository. To use this image, you’ll need to connect the repository to an Image Registry where we will push images. We’ll use the repo2docker-action docs to guide us.

  1. Go to the repo2docker-action guide’s section on pushing to quay.io.

  2. Follow all the instructions (except the last step).

When you have completed these steps, you should have:

  • A quay.io repository of the form quay.io/<quay-username>/<repository-name>

  • You should have two secrets set on your newly-created GitHub repository:

    • QUAY_USERNAME: the user name of the quay.io robot account

    • QUAY_PASSWORD: the password of the quay.io robot account

    Secrets

3. Enable image pushes to quay.io#

Step 2 should have provided the appropriate credentials to push the image to quay.io via GitHub Actions. This template repository provides two GitHub workflows that are configured to use these credentials to build and push the image to quay.io, but they need additional configuration. Below are the steps to configure each of them.

Enable quay.io image push for build.yaml#

The build.yaml workflow builds the container image and pushes it to quay.io if credentials and image name are properly set. This happens on every pushed commit on the main branch of the repo (including when a PR is merged).

To enable pushing to the appropriate quay.io repository, edit line 35 of build.yaml and:

  1. Uncomment the IMAGE_NAME option

  2. Replace <quay-username>/<repository-name> with the info of the quay.io repository created at step 2

  3. Commit the changes you’ve made to build.yaml

IMAGE_NAME

You can checkout the logs of this GitHub Workflow via the Github Actions tab on your image repository.

Build workflow

If you are triggering this action by merging a PR or directly pushing to the main branch, you should look at the Github Actions tab and this will show a pushing quay.io/... message, followed by the image name and tag like in the image below.

Build logs

Enable quay.io image push for test.yaml#

The test.yaml workflow builds the container image on pull requests. It can also push it to quay.io if credentials and the image name are correctly set, and the NO_PUSH option is removed.

To enable pushing to the appropriate quay.io repository, edit lines 31 of test.yaml and:

  1. Uncomment the IMAGE_NAME option

  2. Replace <quay-username>/<repository-name> with the info of the quay.io repository created at step 2

  3. Commit the changes you’ve made to build.yaml

IMAGE_NAME

Tip

IF you want to also push the image on Pull Request commits, then edit lines 27 of test.yaml and remove the NO_PUSH: "true" line. This will disable verbose mode and push the image to the registry instead.

The Optional Inputs section in the jupyterhub/repo2docker-action docs provides more details about the NO_PUSH option, alongside additional inputs that can also be passed to the repo2docker-action.

Checkout the logs of this GitHub Workflow via the Github Actions tab on your image repository.

Test workflow

This workflow is triggered by pull requests. By default, if the NO_PUSH flag is not explicitly disabled, then the image won’t be pushed to the registry, so no pushing quay.io/... message will be shown in the logs.

4. Customize the image#

Modify the environment.yml file and add all the packages you want installed in the conda environment. Note that repo2docker already installs this list of packages. More about what you can do with environment.yml, can be found in the repo2docker docs.

  1. Commit the changes made to environment.yml.

  2. Create a Pull Request with this commit, or push it directly to the main branch.

  3. If you merge the PR above or directly push the commit to the main branch, the GitHub Action will automatically build and push the container image. Wait for this action to finish.

5. Build and push the image#

Images generated by this action are automatically tagged with both latest and <SHA> corresponding to the relevant commit SHA on GitHub. Both tags are pushed to the image registry specified by the user. If an existing image with the latest tag already exists in your registry, this Action attempts to pull that image as a cache to reduce unnecessary build steps.

Checkout an example of a quay.io respository that hosts the user environment image of a 2i2c hub.

6. Connect the hub with this user image#

  1. Go to the list of image tags on quay.io, and find the tag of the last push. This is usually under the latest tag. Use this to construct your image name - quay.io/<quay-username>/<repository-name>:<tag>.

    Tags list example
  2. Open the Configurator for the hub (you need to be logged in as an admin). You can access it from the hub control panel, under Services in the top bar or by going to https://<hub-address>/services/configurator/

    Configurator
  3. Make a note of the current image name there.

  4. Put the image tag you constructed in a previous step into the User docker image text box.

  5. Click Submit! this is alpha level software, so there is no ‘has it saved’ indicator yet :)

See the Configurator docs for more information.

7. Test the new image#

Test the new image by starting a new user server! If you already had one running, you need to stop and start it again to test. If you find new issues, you can revert back to the previous image by entering the old image name in the JupyterHub Configurator.

This will be streamlined in the future.

Appendix: Push the image to a registry other than Quay.io :cloud:#

The jupyterhub/repo2docker-action can build and push the image to registries other than Quay.io. Checkout the action docs for the instructions on how to setup your workflow to push to: AWS Elastic Container Registry, Google Container Registry (deprecated but popular), Google Artifact Registry (preferred), Azure Container Registry.

Note

For cloud provider-specific registries, if we are running the cluster on our projects, please contact the 2i2c team to give you credentials for it.