如何在Ubuntu中安装Docker
程序员文章站
2022-07-12 10:29:39
...
1.更新ubuntu的apt源索引
sudo apt-get update
2.安装包允许apt通过HTTPS使用仓库
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
3.添加Docker官方GPG key(ps:操作这部分时,网络一定要好)
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
4.设置Docker稳定版仓库
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
5.添加仓库后,更新apt源索引
sudo apt-get update
6.安装最新版Docker CE(社区版)
sudo apt-get install docker-ce
7.检查Docker CE是否安装正确
sudo docker run hello-world
出现如下信息,表示安装成功
上一篇: 进程间通信(五)—信号
推荐阅读
-
Ubuntu中安装MySQL的时候初始化密码
-
Ubuntu中给ff安装flash 插件 UbuntuFlashLinuxFirefox
-
Ubuntu中给ff安装flash 插件 UbuntuFlashLinuxFirefox
-
Ubuntu中给ff安装flash 插件 UbuntuFlashLinuxFirefox
-
Ubuntu中给ff安装flash 插件 UbuntuFlashLinuxFirefox
-
虚拟机中安装Ubuntu后,安装VMwareTools出错的解决办法:Not enough free space to extract VMwareTools
-
在ubuntu中从DOCKER启用WEB服务
-
memcached—如何在Windows操作系统中安装、启动和卸载memcached
-
Ubuntu7.10中mysql安装不上与不能登录的对策
-
Ubuntu下安装和使用OpenNMT翻译以及其中系统中遇到的问题