0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ラズパイにDocker環境を整える(Docker&Docker Compose)

Posted at

Dockerインストール

$ su -
# curl -fsSL https://get.docker.com -o get-docker.sh
# sh get-docker.sh
# systemctl enable docker

インストール確認&起動確認

バージョン確認できること

# docker --version
Docker version 23.0.1, build a5ee5b1

ステータス確認して、active(running)であること

# systemctl status docker

Docker Composeインストール

pipを使ってインストールするらしい。

# pip3 install docker-compose

ちょっと古いやつがインストールされるようである。

# docker-compose --version
docker-compose version 1.29.2, build unknown
0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?