今の若者の間で常識になっているらしいコンテナ環境。
その中で有名ドコロであるDockerを
実際のところ
sudo apt-get update && sudo apt-get upgrade
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
更に、ユーザーグループdockerを作成し、ユーザー名を登録
今回はデフォのまんまだったのでpi
sudo usermod -aG docker pi
ためす
$ docker --version Docker version 20.10.14, build a224086
ちゃんとコマンドが動くかのテストを実施
$ docker run hello-world
実行すると、こんな塩梅
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
9b157615502d: Pull complete
Digest: sha256:bfea6278a0a267fad2634554f4f0c6f31981eea41c553fdf5a83e95a41d40c38
Status: Downloaded newer image for hello-world:latestHello from Docker!
This message shows that your installation appears to be working correctly.To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(arm32v7)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bashShare images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/For more examples and ideas, visit:
https://docs.docker.com/get-started/
けす
環境がぐちゃぐちゃになった等々で消したい場合は
sudo apt purge docker-ce
【旧情報】get-docker.shのときにdpkgまわりのエラーがでた
sudo sh get-docker.sh
ここで、執筆初版時点では
E: Sub-process /usr/bin/dpkg returned an error code (1)
と、上手く導入できていないエラーが発生しているため
sudo reboot
の後、
sudo dpkg --configure docker-ce
としてパッケージ導入しました。