From e159de94eea9d64c7760bfca1bc37f75b6dbfbf1 Mon Sep 17 00:00:00 2001 From: Wei Lee Date: Thu, 23 Nov 2023 19:16:34 +0800 Subject: [PATCH 1/3] docs(breeze): add guideline for missing image --- BREEZE.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/BREEZE.rst b/BREEZE.rst index d5bd3c73a8f66..c75bec2cdd6f3 100644 --- a/BREEZE.rst +++ b/BREEZE.rst @@ -949,6 +949,23 @@ In this case, disabling IPv6 in the host machine and using IPv4 instead resolved The similar issue could happen if you are behind an HTTP/HTTPS proxy and your access to required websites are blocked by it, or your proxy setting has not been done properly. +"No such image" Error: +------------------------ + +When running ``breeze start-airflow`` or commands that needs a base image, the following output might be observed: + +.. code-block:: bash + + [+] Creating 3/0 + ✔ Container docker-compose-rabbitmq-1 Running 0.0s + ✔ Container docker-compose-redis-1 Running 0.0s + ✔ Container docker-compose-postgres-1 Running 0.0s + [+] Building 0.0s (0/0) docker:desktop-linux + Error response from daemon: No such image: ghcr.io/apache/airflow/main/ci/python3.10:latest + Error 1 returned + +In this case, we'll need to push the missing image ``ghcr.io/apache/airflow/main/ci/python3.10:latest`` as stated in the error message through ``docker pull ghcr.io/apache/airflow/main/ci/python3.10:latest``. + Advanced commands ================= From 2a9ea3097b39eed3e3f44e4ff08074629a87a732 Mon Sep 17 00:00:00 2001 From: Pankaj Koti Date: Thu, 23 Nov 2023 16:58:07 +0530 Subject: [PATCH 2/3] Update BREEZE.rst --- BREEZE.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BREEZE.rst b/BREEZE.rst index c75bec2cdd6f3..f9af797770b10 100644 --- a/BREEZE.rst +++ b/BREEZE.rst @@ -964,7 +964,7 @@ When running ``breeze start-airflow`` or commands that needs a base image, the f Error response from daemon: No such image: ghcr.io/apache/airflow/main/ci/python3.10:latest Error 1 returned -In this case, we'll need to push the missing image ``ghcr.io/apache/airflow/main/ci/python3.10:latest`` as stated in the error message through ``docker pull ghcr.io/apache/airflow/main/ci/python3.10:latest``. +In this case, we'll need to pull the missing image ``ghcr.io/apache/airflow/main/ci/python3.10:latest`` as stated in the error message through ``docker pull ghcr.io/apache/airflow/main/ci/python3.10:latest``. Advanced commands ================= From 68c5eea2878299307661e344c8466d0c53acf7d3 Mon Sep 17 00:00:00 2001 From: Wei Lee Date: Thu, 23 Nov 2023 19:33:06 +0800 Subject: [PATCH 3/3] docs(breeze): reword description --- BREEZE.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BREEZE.rst b/BREEZE.rst index f9af797770b10..34c982018f68e 100644 --- a/BREEZE.rst +++ b/BREEZE.rst @@ -964,7 +964,7 @@ When running ``breeze start-airflow`` or commands that needs a base image, the f Error response from daemon: No such image: ghcr.io/apache/airflow/main/ci/python3.10:latest Error 1 returned -In this case, we'll need to pull the missing image ``ghcr.io/apache/airflow/main/ci/python3.10:latest`` as stated in the error message through ``docker pull ghcr.io/apache/airflow/main/ci/python3.10:latest``. +In this case, we'll need to pull the missing image. For example, for Python 3.10 we need to use ``ghcr.io/apache/airflow/main/ci/python3.10:latest`` as stated in the error message through ``docker pull ghcr.io/apache/airflow/main/ci/python3.10:latest``. Advanced commands =================