This is an automated email from the ASF dual-hosted git repository.
kamilbregula pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new d814a10 Fix flower port in Running Airflow in Docker document (#14575)
d814a10 is described below
commit d814a1091e84adf48ccf45178979f1b6fcb8f3c0
Author: Seo JiHyeong <[email protected]>
AuthorDate: Wed Mar 3 21:11:08 2021 +0900
Fix flower port in Running Airflow in Docker document (#14575)
---
docs/apache-airflow/start/docker.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/apache-airflow/start/docker.rst
b/docs/apache-airflow/start/docker.rst
index a763e32..6411928 100644
--- a/docs/apache-airflow/start/docker.rst
+++ b/docs/apache-airflow/start/docker.rst
@@ -48,7 +48,7 @@ This file contains several service definitions:
- ``airflow-webserver`` - The webserver available at ``http://localhost:8080``.
- ``airflow-worker`` - The worker that executes the tasks given by the
scheduler.
- ``airflow-init`` - The initialization service.
-- ``flower`` - `The flower app <https://flower.readthedocs.io/en/latest/>`__
for monitoring the environment. It is available at ``http://localhost:8080``.
+- ``flower`` - `The flower app <https://flower.readthedocs.io/en/latest/>`__
for monitoring the environment. It is available at ``http://localhost:5555``.
- ``postgres`` - The database.
- ``redis`` - `The redis <https://redis.io/>`__ - broker that forwards
messages from scheduler to worker.