what version of docker compose should i be using
# replication-ask-ai
r
what version of docker compose should i be using
k
Airbyte recommends using Docker Compose v2. If you're using an older version, you may encounter issues. For instance, the
run-ab-platform.sh
script in Airbyte references
docker compose version
, which is specific to Docker Compose v2. If you're using an older version, you might need to change this to
docker-compose version
to avoid errors. However, it's best to upgrade to Docker Compose v2 as suggested by Airbyte. You can find more information on migrating to Docker Compose v2 in the Docker documentation [here](https://docs.docker.com/compose/migrate/). In addition, it's worth noting that the snap version of Docker has been reported to cause problems. If you're using Ubuntu, it's recommended to use the apt version of Docker instead of the snap version. Sources: - [Github Issue (closed): run-ab-platform.sh installation script fails because it is improperly referencing docker-compose](https://github.com/airbytehq/airbyte/issues/27296) - [Forum Post: Airbyte error on startup with docker-compose](https://discuss.airbyte.io/t/3583)