Hi, sorry if I’m missing something obvious as I am...
# replication-ask-ai
a
Hi, sorry if I’m missing something obvious as I am new to this: I am trying to launch airbyte locally on Mac. I installed docker as per instructions - docker compose is on docker desktop I believe - and then when launching get the following error.
docker compose v2 not found! please install docker compose!
What can I do to debug and solve?
k
A message from kapa.ai
New message text here
a
I do have docker compose > 2 through docker desktop
$ which docker
/usr/local/bin/docker
$ which docker-compose
/usr/local/bin/docker-compose
m
That’s weird. Can you confirm you can run
docker compose --help
?
a
yup seems to work as well:
m
Did you try
docker compose up -d
or
./run-platform.sh
?
a
Yeah just retried that and the error is
Copy code
docker: 'compose' is not a docker command.
It seems to suggest docker compose V1 from my unserstanding but not sure why
👀 1
m
Hi Guys, having the same issue here with Amazon Linux 2. The command from your insructions
sudo yum install -y docker-compose-plugin
does not not work on Amazon Linux giving
Unable to find a match: docker-compose-plugin
. So had to install docker-compose via curl. It worked, but AirByte still gives an error that docker compose v2 is not installed:
Possible cause is that curl installed docker-compose must use hyphen symbol
Thank you for your help
I think I've just resolved it by
Copy code
sed 's/docker compose/docker-compose/g' run-ab-platform.sh | sudo tee run-ab-platform2.sh
sudo bash run-ab-platform2.sh