Slackbot
10/22/2024, 4:11 PMuser
10/22/2024, 4:11 PMabctl
, 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: bash docker compose stop
2. Make sure that you have the latest version of abctl
by running the following command: bash curl -LsfS <https://get.airbyte.com> | bash -
3. Run abctl
with the migrate flag set with the following command: 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.