码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu16.04安装docker

时间:2019-12-15 18:04:04      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:ash   ble   restart   mct   release   地址   tool   update   sof   

安装依赖

sudo apt-get install apt-transport-https ca-certificates software-properties-common

添加清华源镜像地址

curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add 

添加仓库

sudo add-apt-repository "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu $(lsb_release -cs) stable"

更新软件源

sudo apt-get update

安装docker-ce 也可以指定固定的版本,默认是安装最新版本。

默认最新:sudo apt-get install docker-ce       //这条命令就可以
指定版本:sudo apt-get install docker-ce=<VERSION>

根据需要来 配置docker 自启动或者禁用

sudo systemctl enable/disable docker

启动docker

sudo systemctl start docker

建立docker 组

sudo groupadd docker    //可能提示你已经存在

将当前用户添加进docker组

sudo gpasswd -a ${USER} docker

此时group命令获取到的是缓存组的信息。所以我们要手动刷新一下

newgrp - docker

这个网络你不设置个加速器能气死你。

curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://8ad7943c.m.daocloud.io

重启docker

sudo systemctl restart docker

ubuntu16.04安装docker

标签:ash   ble   restart   mct   release   地址   tool   update   sof   

原文地址:https://www.cnblogs.com/aric2016/p/12045233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!