Skip to content

Commit

Permalink
Fix upgrade guide for Docker (#27035)
Browse files Browse the repository at this point in the history
An additional command needs to be run to remove existing local files
before relaunching the platform.
  • Loading branch information
malikdiarra committed Jun 6, 2023
1 parent 618fd60 commit 5afa2b8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/operator-guides/upgrading-airbyte.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,13 @@ Airbyte version 0.40.27 or later requires [Docker Compose V2](https://docs.docke

ii. If you are running Airbyte from downloaded `docker-compose.yaml` and `.env` files without a GitHub repo, run `wget https://raw.githubusercontent.com/airbytehq/airbyte/master/run-ab-platform.sh` to download the installation script.

3. Bring Airbyte back online, optionally with the `-b` flag to run the containers in the background (docker detached mode).
3. Remove previous local `docker-compose.yaml` and `.env`

```bash
./run-ab-platform.sh -r
```

4. Bring Airbyte back online, optionally with the `-b` flag to run the containers in the background (docker detached mode).

```bash
./run-ab-platform.sh -b
Expand Down

0 comments on commit 5afa2b8

Please sign in to comment.