ふと Docker をインストールしてみたくなったのでその手順をまとめる。 Dockerとは、仮想環境の一つでOSの一部を仮想化するし高速に起動する。 以下のサイト等を参照。下記サイトはCentOSにインストールしている。 さくらナレッジ Docker とは https://knowledge.sakura.ad.jp/13265/ Docker には、 無償版のDocker CE (Docker Community Edition) と 商用版 Docker EE (Docker Enterprise Edition)がある。 ここでは Docker CE を導入する。 導入手順は Docker のマニュアルに従った。 https://docs.docker.com/install/linux/docker-ce/ubuntu/ Ubuntu 19.04 なのでそれに従う。 まず、導入前の環境を整える。 次のコマンドで必要なプログラムの導入をする。 $ sudo apt update $ sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common リポジトリを追加するので GPGキー を登録。 $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 次のコマンドで導入したキーのフィンガープリントを確認できる。 $ sudo apt-key fingerprint 0EBFCD88 リポジトリを登録する。 CPUを選択し、stable nightly test から一つ選ぶ。 よほどのことがない限り stable を選択する。 $ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" あとは Docker-CE のインストールを行う。 $ sud...