This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new b0406f58f0 Add slim images to docker-stack docs index (#23601)
b0406f58f0 is described below
commit b0406f58f0c51db46d2da7c7c84a0b5c3d4f09ae
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue May 10 17:24:26 2022 +0200
Add slim images to docker-stack docs index (#23601)
---
docs/docker-stack/index.rst | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/docs/docker-stack/index.rst b/docs/docker-stack/index.rst
index a6baecbe61..ed52625031 100644
--- a/docs/docker-stack/index.rst
+++ b/docs/docker-stack/index.rst
@@ -55,9 +55,18 @@ You can find the following images there (Assuming Airflow
version :subst-code:`|
* :subst-code:`apache/airflow:|airflow-version|` - the versioned
Airflow image with default Python version (3.7 currently)
* :subst-code:`apache/airflow:|airflow-version|-pythonX.Y` - the versioned
Airflow image with specific Python version
-Those are "reference" images. They contain the most common set of extras,
dependencies and providers that are
+Those are "reference" regular images. They contain the most common set of
extras, dependencies and providers that are
often used by the users and they are good to "try-things-out" when you want to
just take Airflow for a spin,
+You can also use "slim" images that contain only core airflow and are about
half the size of the "regular" images
+but you need to add all the :doc:`extra-packages-ref` and providers that you
need separately
+via :ref:`Building the image <build:build_image>`.
+
+* :subst-code:`apache/airflow:slim-latest` - the latest released
Airflow image with default Python version (3.7 currently)
+* :subst-code:`apache/airflow:slim-latest-pythonX.Y` - the latest released
Airflow image with specific Python version
+* :subst-code:`apache/airflow:slim-|airflow-version|` - the
versioned Airflow image with default Python version (3.7 currently)
+* :subst-code:`apache/airflow:slim-|airflow-version|-pythonX.Y` - the
versioned Airflow image with specific Python version
+
The Apache Airflow image provided as convenience package is optimized for
size, and
it provides just a bare minimal set of the extras and dependencies installed
and in most cases
you want to either extend or customize the image. You can see all possible
extras in :doc:`extra-packages-ref`.