I have executed this command after upgrading airby...
# ask-ai
a
I have executed this command after upgrading airbyte
./run-ab-platform.sh -b
& i used -b parameter, now i have to reset this -b parameter then how to do that ?
k
To reset the
-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:
Copy code
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:
Copy code
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:
Copy code
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.