For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
      • AstroFully-managed data operations, powered by Apache Airflow.
      • Astro Private CloudRun Airflow-as-a-service in your environment.
      • Professional ServicesExpert Airflow services for your enterprise's success.
    • Tools
      • Cosmos
      • Orbiter
      • CLI
      • AI SDK
      • Agents
      • Blueprint
      • UpdatesThe State of Airflow 2026See the insights from over 5,800 data practitioners in the full report. Download Now ➔
  • Customers
  • Docs
    • Insights
      • Blog
      • Webinars
      • Resource Library
      • Events
    • Education
      • Academy
      • What is Airflow?
  • Pricing
Get Started Free
        • Single-node install
        • Image architecture
        • Install Python packages
        • Upgrade Astronomer Certified
        • CVE policy
        • Support policy
      • User roles and permissions
      • System components
      • Support
      • Version compatibility reference
      • Release and lifecycle policy
      • FAQ
      • Astro CLI command reference
    • Book Office Hours

Product

  • Platform Overview
  • Astro
  • Astro Observe
  • Astro Private Cloud
  • Security & Trust
  • Pricing

Tools & Services

  • Cosmos
  • Docs
  • Professional Services
  • Product Updates

Use Cases

  • AI Ops
  • Data Observability
  • ETL/ELT
  • ML Ops
  • Operational Analytics
  • All Use Cases

Industries

  • Financial Services
  • Gaming
  • Retail
  • Manufacturing
  • Healthcare
  • All Industries

Resources

  • Academy
  • eBooks & Guides
  • Blog
  • Webinars
  • Events
  • The Data Flowcast Podcast
  • All Resources

Airflow

  • What is Airflow
  • Airflow on Astro
  • Airflow 3.0
  • Airflow Upgrades
  • Airflow Use Cases
  • Airflow 2.x End of Life

Company

  • Our Story
  • Customers
  • Newsroom
  • Careers
  • Contact

Support

  • Knowledge Base
  • Status
  • Contact Support
GitHubYouTubeLinkedInx
  • Legal
  • Privacy
  • Terms of Service
  • Consent Preferences

  • Do Not Sell or Share My Personal information
  • Limit the Use Of My Sensitive Personal Information

Apache Airflow®, Airflow, and the Airflow logo are trademarks of the Apache Software Foundation. Copyright © Astronomer 2026. All rights reserved.

LogoLogo
On this page
  • Overview
  • Upgrade Astronomer Certified on Docker
  • Upgrade the Astronomer Certified Python Wheel
ReferenceAstronomer Certified (Deprecated)

Upgrade an Astronomer Certified Airflow Environment

Edit this page
Built with
No versions of Astronomer Certified (AC) are currently supported by Astronomer. Astronomer stopped releasing new versions of AC with the release of Apache Airflow 2.4. Astronomer recommends creating all new Deployments with Astro Runtime, as well as migrating existing Deployments from AC to Astro Runtime as soon as your organization is ready. See Migrate to Runtime and Runtime image architecture.

Overview

New versions of Astronomer Certified (AC) are released regularly to support new major, minor, or patch versions of Apache Airflow. To take advantage of both features as well as bug and security fixes, we recommend regularly upgrading to the latest version of AC.

Follow this guide to upgrade your Airflow environment either on a virtual machine with the AC Python Wheel or on Docker with the AC Docker image.

Upgrading to Airflow 2.0 requires additional steps and precautions. If you’re upgrading from Airflow 1.10 to Airflow 2.0+, we recommend following Apache Airflow’s Upgrading to Airflow 2.0 guide.
Once you upgrade Airflow versions, you cannot downgrade to an earlier version. The Airflow metadata database structurally changes with each release, which results in backwards incompatibility across versions.

Upgrade Astronomer Certified on Docker

If you’re upgrading an Astronomer Certified environment running on Docker, all you need to do is update your Dockerfile to reference a new Astronomer Certified Docker image.

  1. Choose a new Astronomer Certified image based on the Airflow version you want to upgrade to. For a list of supported Astronomer Certified images, see Astronomer Certified Lifecycle Schedule or our Quay.io repository.

  2. Open the Dockerfile in your Airflow project directory.

    In your Dockerfile, replace the value in the existing FROM statement with the new Astronomer Certified Docker image you’re upgrading to. For example, to upgrade to Airflow 2.1, your Dockerfile would include the following line:

    FROM quay.io/astronomer/ap-airflow:2.1.0-buster-onbuild

    If you’re developing locally, make sure to save your changes before proceeding.

  3. If you are using the Astronomer CLI, run astro dev stop followed by astro dev start to restart your 3 Airflow components (Scheduler, Webserver, and Database).

    If you aren’t using the Astronomer CLI, you can manually stop all Airflow containers using docker compose down --volumes --rmi all.

  4. Open the Airflow UI and click About > Version to confirm that the upgrade was successful. If you’re developing locally with the Astronomer CLI, the Airflow UI is available at http://localhost:8080/.

Upgrade the Astronomer Certified Python Wheel

Before upgrading, make sure both of the following are true:

  • Your Airflow metadata DB is backed up.
  • All DAGs have been paused and no tasks are running.

Then, for each machine running Airflow:

  1. Upgrade Astronomer Certified using the following command, making sure to replace the dependencies and version number as needed:

    1pip install --extra-index-url=https://pip.astronomer.io/simple/ 'astronomer-certified[<dependencies>]==<version-number>' --upgrade

    For example, if you wanted to upgrade to the latest patch version of Airflow 2.1 while using a Postgres database, your command would look something like this:

    1pip install --extra-index-url=https://pip.astronomer.io/simple/ 'astronomer-certified[postgres]==2.1.0.*' --upgrade
  2. Upgrade your metadata DB using the following command:

    1airflow upgradedb
This command changes to airflow db upgrade in Airflow 2.0+. For more information on major changes in 2.0, read Apache Airflow documentation.
  1. In a web browser, access the Airflow UI at http://localhost:8080 and click About > Version. Once there, you should see the correct Airflow version listed.
The URL listed above assumes your Webserver is at port 8080 (default). To change that default, read this forum post.