Taragolis commented on code in PR #36611: URL: https://github.com/apache/airflow/pull/36611#discussion_r1442706434
########## docs/apache-airflow/howto/docker-compose/index.rst: ########## @@ -149,7 +149,7 @@ On **all operating systems**, you need to run database migrations and create the .. code-block:: bash - docker compose up airflow-init + docker compose run airflow-init Review Comment: [`docker compose run`](https://docs.docker.com/engine/reference/commandline/compose_run/) has a different purpose (run a command) if compare to the [`docker compose up`](https://docs.docker.com/engine/reference/commandline/compose_up/) (run a service) There is no any problem to the start container with up command at least in the CI and docker-compose sample tests as well as in Linux/MacOS, in addition this service would also use later for services dependencies check. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
