docker-ubuntu安装
Posted ls1997
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker-ubuntu安装相关的知识,希望对你有一定的参考价值。
sudo
apt-get update
sudo
apt-get -y
install
apt-transport-https ca-certificates curl software-properties-common
# step 2: 安装GPG证书
curl -fsSL http:
//mirrors
.aliyun.com
/docker-ce/linux/ubuntu/gpg
|
sudo
apt-key add -
# Step 3: 写入软件源信息
sudo
add-apt-repository
"deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
# Step 4: 更新并安装 Docker-CE
sudo
apt-get -y update
sudo
apt-get -y
install
docker-ce
# Step 5: 启动docker服务
sudo service docker start
#注意应为全是sudo下载以及创建所以用
su用户(最高权限)
为了永久性保留更改,您可以修改 /etc/docker/daemon.json 文件并添加上 registry-mirrors 键值。
"registry-mirrors": ["http://hub-mirror.c.163.com"]
然后重新启动下docker服务
systemctl restart docker
——————————
镜像
搜索
docker search ubuntu
docker search -f is-official=true redis
查看本地镜像
docker images
下载镜像
docker pull ubuntu
docker pull ubuntu:16.04
删除镜像
docker rmi ubuntu (默认删除latest版本)
docker rmi 8cef... (image id)
docker rmi -f ubuntu (强行删除)
镜像保存
docker save ubuntu centos > abc.tar (应用:拷贝给别人)
docker save ubuntu centos -o abc.tar (应用:拷贝给别人)
加载镜像
docker load -i abc.tar
重命名镜像
docker tag ubuntu new_name
以上是关于docker-ubuntu安装的主要内容,如果未能解决你的问题,请参考以下文章