1
0
mirror of synced 2025-12-20 18:39:31 -05:00
Files
airbyte/docs/platform/deploying-airbyte/migrating-from-docker-compose.md
Ian Alton 01cd16654e 11059 multi-instance, versioned docs (#58095)
Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2025-04-24 02:58:09 +03:00

41 lines
1.2 KiB
Markdown

---
products: oss-community
---
# Migrating from Docker Compose
<!-- This topic has been preserved from the original Quickstart guide, unchanged. It may be used later in rewritten deployment docs. -->
:::note
If you're using an external database or secret manager you don't need to run `--migrate` flag.
You must create the `secrets.yaml` and `values.yaml` and then run `abctl local install --values ./values.yaml --secret ./secrets.yaml`.
Please check [instructions](integrations/database.md) to setup the external database as example.
:::
If you have data that you would like to migrate from an existing docker compose instance follow the steps below:
1. Make sure that you have stopped the instance running in docker compose, this may require the following command:
```
docker compose stop
```
2. Make sure that you have the latest version of abctl by running the following command:
```
curl -LsfS https://get.airbyte.com | bash -
```
3. Run abctl with the migrate flag set with the following command:
```
abctl local install --migrate
```
:::note
If you're using a version of Airbyte that you've installed with `abctl`, you can find instructions on upgrading your Airbyte installation [here](../operator-guides/upgrading-airbyte.md#upgrading-with-abctl).
:::