This is an automated email from the ASF dual-hosted git repository.

taragolis 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 3401ab1f57 Update docker-compose command (#39504)
3401ab1f57 is described below

commit 3401ab1f570c3c8f2186605654d472127fcc6d74
Author: Zorgosto <34967740+zorgo...@users.noreply.github.com>
AuthorDate: Thu May 9 04:35:55 2024 +0200

    Update docker-compose command (#39504)
    
    Update docker-compose command to docker compose as the previous version is 
outdated.
---
 docs/apache-airflow/tutorial/pipeline.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/apache-airflow/tutorial/pipeline.rst 
b/docs/apache-airflow/tutorial/pipeline.rst
index 37a352109f..23e6b79eab 100644
--- a/docs/apache-airflow/tutorial/pipeline.rst
+++ b/docs/apache-airflow/tutorial/pipeline.rst
@@ -39,10 +39,10 @@ The steps below should be sufficient, but see the 
quick-start documentation for
   echo -e "AIRFLOW_UID=$(id -u)" > .env
 
   # Initialize the database
-  docker-compose up airflow-init
+  docker compose up airflow-init
 
   # Start up all services
-  docker-compose up
+  docker compose up
 
 After all services have started up, the web UI will be available at: 
``http://localhost:8080``. The default account has the username ``airflow`` and 
the password ``airflow``.
 

Reply via email to