Correct tutorial bullet points wrongly edited by Gitbook. (#2275)
- List correct link to tutorial page. - Correct bad Gitbook changes. reviewer: Chris
This commit is contained in:
@@ -49,31 +49,31 @@ docker run --rm -v /tmp:/config airbyte/migration:0.15.0-alpha --\
|
||||
It may seem confusing that you need to specify the target version twice. The version passed as `--target-version` specifies the version to which the data will be migrated. Specifying the target version in the docker container tag makes sure that you are pulling an image that at least has the migration for the version you want. Technically the version used in the docker tag can be equal to or greater than the version you are upgrading to. For the simplicity of this tutorial we have them match.
|
||||
{% endhint %}
|
||||
|
||||
1. Turn off Airbyte fully.
|
||||
5. Turn off Airbyte fully.
|
||||
|
||||
```text
|
||||
docker-compose down
|
||||
```
|
||||
|
||||
2. Delete the existing Airbyte docker volumes. _Note: Make sure you have already exported your data \(step 3\). This command is going to delete your data in Docker!_
|
||||
6. Delete the existing Airbyte docker volumes. _Note: Make sure you have already exported your data \(step 3\). This command is going to delete your data in Docker!_
|
||||
|
||||
```bash
|
||||
docker volume rm $(docker volume ls -q | grep airbyte)
|
||||
```
|
||||
|
||||
3. Upgrade the docker instance to new version.
|
||||
7. Upgrade the docker instance to new version.
|
||||
|
||||
i. If you are running Airbyte from a cloned version of the Airbyte repo and want to use the current most recent stable version, just `git pull`.
|
||||
|
||||
ii. If you are running Airbyte from a `.env`, edit the `VERSION` field in that file to be the desired version.
|
||||
|
||||
4. Bring Airbyte back online.
|
||||
8. Bring Airbyte back online.
|
||||
|
||||
```text
|
||||
docker-compose up
|
||||
```
|
||||
|
||||
5. Complete Preferences section. In the subsequent setup page click "Skip Onboarding". Navigate to the Admin page in the UI. Then go to the Configuration Tab. Click Import. This will prompt you to upload the migrated archive to Airbyte. After this completes, your upgraded Airbyte instance will now be running with all of your original configuration.
|
||||
9. Complete Preferences section. In the subsequent setup page click "Skip Onboarding". Navigate to the Admin page in the UI. Then go to the Configuration Tab. Click Import. This will prompt you to upload the migrated archive to Airbyte. After this completes, your upgraded Airbyte instance will now be running with all of your original configuration.
|
||||
|
||||
This step will throw an exception if the data you are trying to upload does not match the version of Airbyte that is running.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user