From 570c11769b936f8ace830edd4ab04ee9608b7c24 Mon Sep 17 00:00:00 2001 From: Hiroyuki Sato Date: Tue, 24 Oct 2023 21:41:34 +0900 Subject: [PATCH] docs: Add base_image parameter example. Some users don't know how to set base_image. Add an example of how to set it. --- docs/source/howto/base_image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/howto/base_image.md b/docs/source/howto/base_image.md index 823a0549..066b3504 100644 --- a/docs/source/howto/base_image.md +++ b/docs/source/howto/base_image.md @@ -3,7 +3,7 @@ You may change the base image used in the `Dockerfile` that creates images by repo2docker. This is equivalent to changing the `FROM ` in the Dockerfile. -To do so, use the `base_image` traitlet when invoking `repo2docker`. +To do so, use the `base_image` traitlet when invoking `repo2docker` (ex: `repo2docker --Repo2Docker.base_image=image_name`). Note that this is not configurable by individual repositories, it is configured when you invoke the `repo2docker` command. ```{note}