diff --git a/docs/helm-chart/manage-dags-files.rst b/docs/helm-chart/manage-dags-files.rst index a9d46cc467845b..4a297467ed9b3c 100644 --- a/docs/helm-chart/manage-dags-files.rst +++ b/docs/helm-chart/manage-dags-files.rst @@ -18,12 +18,33 @@ Manage DAGs files ================= -When you create new or modify existing DAG files, it is necessary to implement them into the environment. This section will describe some basic techniques you can use. +When you create new or modify existing DAG files, it is necessary to deploy them into the environment. This section will describe some basic techniques you can use. Bake DAGs in Docker image ------------------------- -The recommended way to update your DAGs with this chart is to build a new docker image with the latest DAG code (``docker build -t my-company/airflow:8a0da78 . ``), push it to an accessible registry ```docker push my-company/airflow:8a0da78``), then update the Airflow pods with that image: +The recommended way to update your DAGs with this chart is to build a new docker image with the latest DAG code: + +.. code-block:: bash + + docker build --tag "my-company/airflow:8a0da78" . -f - <