This message was deleted.
# ask-ai
s
This message was deleted.
u
To migrate your Airbyte instance running on EC2 from Docker Compose to
abctl
, you can follow these steps: 1. Ensure that you have stopped the instance running in Docker Compose. You can do this by running the following command:
Copy code
bash docker compose stop
2. Make sure that you have the latest version of
abctl
by running the following command:
Copy code
bash curl -LsfS <https://get.airbyte.com> | bash -
3. Run
abctl
with the migrate flag set with the following command:
Copy code
bash abctl local install --migrate
If you're using an external database or secret manager, you don't need to run the
--migrate
flag. Instead, you must create the
secrets.yaml
and
values.yaml
and then run
abctl local install --values ./values.yaml --secret ./secrets.yaml
. You can check the instructions to set up the external database [here](https://docs.airbyte.com/deploying-airbyte/integrations/database). For more detailed instructions, you can refer to the [Migration Guide](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#migrating-from-docker-compose-optional). Please note that Docker Compose is deprecated in Airbyte and it's recommended to use
abctl
for managing your Airbyte instances.