Ubuntu14.04にdockerをインストールするメモ
1.wgetのインストール
sudo apt-get install wget
2.dockerのインストール
wget -qO- https://get.docker.com/ | sh
3.dockerのチェック
docker run hello-world
4.dockerの実行
docker run -it ubuntu bash
5.ログアウト
exit
6.イメージ確認
docker images
Coding Changes the World
1.wgetのインストール
sudo apt-get install wget
2.dockerのインストール
wget -qO- https://get.docker.com/ | sh
3.dockerのチェック
docker run hello-world
4.dockerの実行
docker run -it ubuntu bash
5.ログアウト
exit
6.イメージ確認
docker images