docker搭建私服

拉registry鏡像

假設在192.168.100.17服務器上搭建私服git

docker pull registry
docker run -d -v /data/docker/registry:/var/lib/registry -p 5000:5000 --restart=always registry

registry的github地址:https://github.com/docker/distributiongithub

配置docker

push以前須要在/etc/docker/daemon.json添加一行docker

{"insecure-registries": ["192.168.100.17:5000"]}

重啓dockerjson

restart docker

push

打標籤服務器

docker tag busybox 192.168.100.17:5000/busybox

開始pushrest

docker push 192.168.100.17:5000/busybox

pull的話同理code

docker pull 192.168.100.17:5000/busybox
相關文章
相關標籤/搜索