<@U04SE163WC8> How to downgrade my Airbyte OSS ins...
# ask-ai
a
@kapa.ai How to downgrade my Airbyte OSS instance running on docker & docker compose to 0.50.54 version
u
To downgrade your Airbyte instance to version 0.50.54, you need to modify the version in the
.env
file and then run the appropriate script. Here are the steps: 1. Open the
.env
file in your Airbyte directory. 2. Change the
VERSION
variable to
0.50.54
. 3. Save and close the
.env
file. 4. Run the
run-ab-platform.sh
script. If you're using Docker Compose, you can use the following command:
Copy code
bash ./run-ab-platform.sh -b
This command will pull the Docker images for the specified version and start Airbyte. Please note that downgrading might not always be the best solution, especially if there are database schema changes between versions. Always make sure to backup your data before performing a downgrade. Also, be aware that Docker Compose is being deprecated in future versions of Airbyte, and it's recommended to migrate to
abctl
for local deployments. You can find a migration guide [here](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#migrating-from-docker-compose-optional). Sources: - [Github Issue (closed): Discovery schema failed > Comments](https://github.com/airbytehq/airbyte/issues/38927) - [Documentation > Using-airbyte > Getting-started > Quickstart > Migrating from Docker Compose (Optional)](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#migrating-from-docker-compose-optional)