安裝Ubuntu官方維護的Docker版本(可能不是最新發布的
$ sudo apt-get update會叫做docker.io是因為先前已經有個軟體叫做docker了
$ sudo apt-get install docker.io
接著啟動Docker內的tab自動補完功能 (個人覺得好像沒甚麼用???)
$ source /etc/bash_completion.d/docker.io
下面的方法是安裝最新發布的Docker版本
讓apt-get能夠處理https協定的來源
[ -e /usr/lib/apt/methods/https ] || {
apt-get update
apt-get install apt-transport-https
}
新增Docker的來源金鑰
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
新增Docker的來源並安裝 lxc-docker
$ sudo sh -c "echo deb https://get.docker.com/ubuntu docker main\
> /etc/apt/sources.list.d/docker.list"
$ sudo apt-get update
$ sudo apt-get install lxc-docker
Note:
There is also a simple curl script available to help with this process.
$ curl -sSL https://get.docker.com/ubuntu/ | sudo sh
新增一個ubuntu的container來驗證功能
$ sudo docker run -i -t ubuntu /bin/bashWhich should download the ubuntu image, and then start bash in a container.
沒有留言:
張貼留言