Ubuntu中安装Docker的方式:
Ubuntu中安装Docker的方式: 1.安装Ubuntu维护的版本sudo apt-get install docker.iosource /etc/bash_completion.d/docker.io安装完成:sudo docker.io version(查看docker的版本)2.安装Docker维护的版本1.检查APT的...
Ubuntu中安装Docker的方式:
1.安装Ubuntu维护的版本
sudo apt-get install docker.io
source /etc/bash_completion.d/docker.io
安装完成:
sudo docker.io version(查看docker的版本)
2.安装Docker维护的版本
1.检查APT的HTTPS 支持 查看/usr/lib/apt/methods/https文件是否存在如果不存在,运行安装命令
apt-get update
apt-get install -y apt-transport-https
2.添加Docker的APT仓库
echo deb https://get.docker.com/ubuntu docker main>/etc/apt/sources.list.d/docker.list
3.添加仓库的KEY
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80--recv-keys
36A1d7869245C8950F966E92D8576A8BA88D21E9
4.安装
apt-get update
apt-get install -y lxc-docker
(2)另一种简单的安装
1.sudo apt-get install -y curl
2.curl -sSL https://get.docker.com/ubuntu/ | sudo sh
3.curl的安装
查看curl是否安装;
whereis curl
安装curl:
sudo apt-get install -y curl
利用装好的Docker运行一个容器
让容器输出hello Word
sudo docker run ubuntu echo "Hellow word"
使用非root用户:
1.sudo groupadd docker
2.sudo gpasswd -a${USER}docker
3.sudo service docker restart
长按下方二维码关注我们
更多推荐
所有评论(0)