24時間をはじめドッカ

ドッキングウィンドウ

ドッキングウィンドウ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 images

docker pull centos

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

ドッキングウィンドウマネージャ

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

ドッキングウィンドウ現地レポ

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

おすすめ

転載: blog.51cto.com/justinit/2471197