查看镜像
docker images

把这个hello-world 推送到私服
bash
docker push hello-world:latest

报错了。不能推送。需要标记镜像
标记Docker镜像
bash
docker tag hello-world:latest 192.168.2.1:5000/hello-world:latest

将Docker镜像推送到私服
bash
docker push 192.168.2.1:5000/hello-world:latest

浏览器查看

