Arif Chaudhary
06/04/2024, 11:17 AM./run-ab-platform.sh -b
& i used -b parameter, now i have to reset this -b parameter then how to do that ?kapa.ai
06/04/2024, 11:18 AM-b
parameter after upgrading Airbyte, you can follow these steps: 1. Bring down the Airbyte instance: First, you need to stop the running Airbyte instance. You can do this by running: bash docker compose down
2. Remove previous local docker-compose.yaml
and .env
files: Next, you need to remove the previous local configuration files. You can do this by running: bash ./run-ab-platform.sh -r
3. Bring Airbyte back online without the -b
flag: Finally, bring Airbyte back online without using the -b
flag. This will run the containers in the foreground: bash ./run-ab-platform.sh
These steps will reset the -b
parameter and bring your Airbyte instance back online without running in detached mode. For more details, you can refer to the [Upgrading on Docker](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-docker) section in the Airbyte documentation.