4.14.203-156.332.amzn2.aarch64 #1 SMP Fri Oct 30 19:19:46 UTC 2020 aarch64 aarch64 aarch64 GNU/Linux
If you check the following documents at the moment,
Install Docker Compose | Docker Documentation https://docs.docker.com/compose/install/
It was as if you downloaded the binary image of the environment from below, or installed it using pip as described on the GitHub page below.
https://github.com/docker/compose/releases
However, there is no ARM64 version of the binary at this time, and unfortunately the installation with pip did not work.
After various searches, I was able to operate with the following Issue comment content/container image.
Release docker/compose image for armv7 / arm64v8 https://hub.docker.com/r/linuxserver/docker-compose
After all, it seems that installing packages directly does not work, so the point is that docker-compose itself is executed as a Docker container in the docker-compose command.
sudo curl -L --fail https://raw.githubusercontent.com/linuxserver/docker-docker-compose/master/run.sh -o /usr/local/bin/docker-compose
sudo chmod + x /usr/local/bin/docker-compose
Recommended Posts