You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2023/03/05 10:25:25 UTC

[airflow] branch main updated: Solution to docker errors that may come while running breeze (#29927)

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 c2acd1da3e Solution to docker errors that may come while running breeze (#29927)
c2acd1da3e is described below

commit c2acd1da3ecbe66d9b71586c213e99d0587ee419
Author: Abhishek-kumar-samsung <a....@samsung.com>
AuthorDate: Sun Mar 5 15:55:16 2023 +0530

    Solution to docker errors that may come while running breeze (#29927)
---
 BREEZE.rst | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/BREEZE.rst b/BREEZE.rst
index ed5cb06ee7..18467d1b82 100644
--- a/BREEZE.rst
+++ b/BREEZE.rst
@@ -72,6 +72,21 @@ Here is an example configuration with more than 200GB disk space for Docker:
   Desktop to 4.13.1 or later to resolve the issue. For technical details, see also
   `docker/for-mac#6529 <https://github.com/docker/for-mac/issues/6529>`_.
 
+**Docker errors that may come while running breeze**
+
+- If docker not running in python virtual environment
+- **Solution**
+- 1. Create the docker group if it does not exist
+- ``sudo groupadd docker``
+- 2. Add your user to the docker group.
+- ``sudo usermod -aG docker $USER``
+- 3. Log in to the new docker group
+- ``newgrp docker``
+- 4. Check if docker can be run without root
+- ``docker run hello-world``
+|
+|
+
 Note: If you use Colima, please follow instructions at: `Contributors Quick Start Guide <https://github.com/apache/airflow/blob/main
 /CONTRIBUTORS_QUICK_START.rst>`__