LoginSignup
3
3

More than 3 years have passed since last update.

Raspberry Pi 4 と Raspberry Pi OS 64bit に Docker をインストール

Last updated at Posted at 2020-10-19

はじめに

$ 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

ここでグループを反映させるために再ログイン

$ sudo systemctl status docker
$ docker version

docker-compose

https://docs.docker.com/compose/install/ を参考にやると失敗した。
(aarch64 用が無かった)

ので、pip でインストール

$ sudo apt -y install python3-pip
$ pip3 install --upgrade pip
$ sudo pip3 install -U docker-compose
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3