見出し画像

Chromebook化したドンキPCにDockerをインストール

プログラミングで開発環境を構築する時に、Dockerを活用したい時があるかもしれません。Dockerをインストールしてみました。

Linux環境の初期設定

過去の記事、「Chromebook化したドンキPCでLinux (ベータ版)を利用する」の通り、Linux (ベータ版)のセットアップが終わっていることが前提です。

Docker をインストール

apt のパッケージインデックスを更新し、apt が HTTPS 経由でリポジトリを使用できるようにパッケージをインストールします。

sudo apt-get update
sudo apt-get install \
   apt-transport-https \
   ca-certificates \
   curl \
   gnupg-agent \
   software-properties-common

Dockerの公式GPGキーを追加します。

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -

フィンガープリント 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 のキーを持っていることを確認するには、フィンガープリントの最後の 8 文字を検索します。

sudo apt-key fingerprint 0EBFCD88
pub rsa4096 2017-02-22 [SCEA]
9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
uid [ unknown] Docker Release (CE deb) <docker@docker.com>
sub rsa4096 2017-02-22 [S]

安定したリポジトリ( stable )を設定するには、以下のコマンドを使用します。

sudo add-apt-repository \
  "deb [arch=amd64] https://download.docker.com/linux/debian \
  $(lsb_release -cs) \
  stable"

aptパッケージのインデックスを更新し、最新版のDocker Engineとcontainerdをインストールする

sudo apt update
sudo apt-get install docker-ce docker-ce-cli containerd.io

hello-worldイメージを実行して、Docker Engineが正しくインストールされていることを確認します。

sudo docker run hello-world
Hello 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.
(amd64)
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 bash
Share 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/

現在のユーザーににdockerグループを追加する(Dockerコマンドを実行する際に、毎回 sudo をつけなくてはならないことを回避するため)

sudo usermod -aG docker `whoami`

再起動

Docker Composeをインストール

sudo apt update && sudo apt upgrade -y

sudo curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
docker-compose version 1.26.2, build eefe0d31

ドンキPC(MUGA ストイックPC2)をChromebook化する方法

※この記事もChromebook化したドンキPCで書いてます。





よろしければサポートお願いいたします。クリエイターとしての活動費とさせていただきます。