$ lsb_release -a
No LSB modules are available.
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 10 (buster)
Release: 10
Codename: buster
$ uname -m
aarch64
docker
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh
$ sudo usermod -aG docker `whoami`
$ exit
Re-login here to reflect the group
$ sudo systemctl status docker
$ docker version
docker-compose
I tried to refer to https://docs.docker.com/compose/install/ and it failed. (There was no for aarch64)
So install with pip
$ sudo apt -y install python3-pip
$ pip3 install --upgrade pip
$ sudo pip3 install -U docker-compose
Recommended Posts