RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
docker入门24小时

docker

docker install For Centos7

yum remove docker*
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum makecache fast
yum -y install docker-ce
systemctl enable docker && systemctl start docker

docker run hello-world

docker run hello-world

docker run

docker images

docker pull centos

docker run --name centos1 -itd -v /opt:/opt:rw -p 80:80 centos

docker manager

# login container
docker attach centos1
# logout container
ctrl+p ctrl+q

docker local repo

docker pull registry
docker run --name localrepo -p 5000:5000 registry
docker tag centos 127.0.0.1:5000/justin/centos:v1
docker push 127.0.0.1:5000/justin/centos:v1

网页名称:docker入门24小时
网站网址:http://sczitong.cn/article/jgcdde.html