currently I'm trying to get docker-compose running in my VM (Ubuntu 20.04) on my mac with the M1 processor. I already installed docker and docker machine via curl on my VM. Docker-compose I try to install as follows:
sudo curl -L "https://github.com/docker/compose/releases/download/1.24.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
The installation seems to work out but if I try to check the version via "sudo docker-compose --version", it says: "/usr/local/bin/docker-compose: 1: Not: not found".
In ubuntu it say it is an aarch64 due to my M1.
Does anyone know how to solve this? Thanks in advance.