Docker: свой репозиторий образов

# Start your registry
docker run -d -p 5000:5000 registry:2
 
# Pull (or build) some image from the hub
docker pull ubuntu
 
# Tag the image so that it points to your registry
docker tag ubuntu localhost:5000/myfirstimage
 
# Push it
docker push localhost:5000/myfirstimage
 
# Pull it back
docker pull localhost:5000/myfirstimage
  1. No comments yet.

  1. No trackbacks yet.

You must be logged in to post a comment.