skip to Main Content

Pulling an image from local Docker registry

I installed a Docker registry to my server like below; docker run -d -p 5000:5000 --name registry registry:2 So after that I pushed Alpine image to that registry. docker pull alpine docker image tag alpine localhost:5000/alpinetest docker push localhost:5000/alpinetest So…

VIEW QUESTION
Back To Top
Search