My Airbyte OSS Instance is hosted on EC2, Which cu...
# ask-ai
a
My Airbyte OSS Instance is hosted on EC2, Which currently is on version 0.57.2, How do i upgrade it to 0.58.1 ?
k
To upgrade your Airbyte OSS instance hosted on EC2 from version 0.57.2 to 0.58.1, you can follow the steps outlined in the [Upgrading Airbyte](https://docs.airbyte.com/operator-guides/upgrading-airbyte) documentation. Here’s a step-by-step guide for upgrading on Docker, which is applicable to your setup: ### Steps to Upgrade Airbyte on Docker 1. Turn off Airbyte: In a terminal on your EC2 instance, run the following command to stop Airbyte:
Copy code
bash    docker compose down
2. Upgrade the Docker instance to the new version: - If you are running Airbyte from a cloned version of the Airbyte GitHub repo and want to use the current most recent stable version, navigate to your Airbyte directory and run:
Copy code
bash      git pull
- If you are running Airbyte from downloaded
docker-compose.yaml
and
.env
files without a GitHub repo, download the installation script:
Copy code
bash      wget <https://raw.githubusercontent.com/airbytehq/airbyte/master/run-ab-platform.sh>
3. Remove previous local
docker-compose.yaml
and `.env`:
Copy code
bash    ./run-ab-platform.sh -r
4. Bring Airbyte back online: Optionally, you can run the containers in the background (docker detached mode) by using the
-b
flag:
Copy code
bash    ./run-ab-platform.sh -b
### Additional Notes - Ensure that you have Docker Compose V2 installed before upgrading, as Airbyte version 0.40.27 or later requires it. You can find the installation instructions [here](https://docs.docker.com/compose/install/). For more detailed instructions, you can refer to the [Upgrading Airbyte on Docker](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-docker) section of the documentation. If you encounter any issues or need further assistance, you can reach out for premium support [here](https://airbyte.com/talk-to-sales-premium-support). By following these steps, you should be able to successfully upgrade your Airbyte OSS instance to version 0.58.1.