Daniel Collins
05/31/2024, 5:50 PMkapa.ai
05/31/2024, 5:50 PMrun-ab-platform.sh
Script: Edit the VERSION
at the top of the run-ab-platform.sh
script to the desired version. For example, to downgrade to version `0.50.20`: sh VERSION=0.50.20
2. Bring Down the Current Instance: If your instance is running, bring it down using: sh docker compose down
3. Remove Previous Docker Compose and Environment Files: Remove your existing docker-compose.yml
and .env
files: sh ./run-ab-platform.sh -r
4. Bring Up the Instance with the Required Version: Bring your instance back up with the required version: sh ./run-ab-platform.sh -b
This will download the docker-compose.yml
and .env
files for your required version. If you have customized these files, you can run: sh ./run-ab-platform.sh -d
This will download the files without running docker compose up
. 5. Reset Configuration if Necessary: If the Airbyte instance does not start properly, you may need to reset your configuration. This means redoing all sources, destinations, and connections. You can find more details on resetting your configuration [here](https://docs.airbyte.com/operator-guides/upgrading-airbyte/#resetting-your-configuration). ### Example Commands Here is a summary of the commands you might use: sh # Edit the VERSION in run-ab-platform.sh VERSION=0.50.20 # Bring down the current instance docker compose down # Remove previous docker-compose and .env files ./run-ab-platform.sh -r # Bring up the instance with the required version ./run-ab-platform.sh -b
### Additional Resources - [Upgrading Airbyte on Docker](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-docker) - [Resetting Your Configuration](https://docs.airbyte.com/operator-guides/upgrading-airbyte/#resetting-your-configuration) By following these steps, you should be able to downgrade your Airbyte instance to a previous version successfully. If you encounter any issues, please refer to the detailed documentation or seek support from the Airbyte community.