From db0a3899457e3d0c331218a22fa8a8d058c0e2f0 Mon Sep 17 00:00:00 2001 From: Sven Kieske Date: Thu, 21 Sep 2023 14:39:20 +0200 Subject: [PATCH] [docs] add instructions for optional dependencies Change-Id: Iac6617a6755a8271f1cd423c50e79a82bc75e67b Signed-off-by: Sven Kieske --- doc/source/admin/image-building.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/source/admin/image-building.rst b/doc/source/admin/image-building.rst index de5f4d8e8b..f0c0e84c11 100644 --- a/doc/source/admin/image-building.rst +++ b/doc/source/admin/image-building.rst @@ -2,11 +2,16 @@ Building Container Images ========================= -Firstly, ensure ``kolla`` is installed. +Firstly, ensure ``kolla`` and the container engine of your choice is installed. + +Currently supported container engines are ``docker`` and ``podman``. .. code-block:: console python3 -m pip install kolla + #only one of these is needed: + python3 -m pip install podman + python3 -m pip install docker Then, the :command:`kolla-build` command is available for building Docker images.