Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions BREEZE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 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
=================

Expand Down