Create your own private docker registry on vCloud Air

It seems that Docker is all the rage right now. One of the limitations I noticed when playing with Docker in my lab is that pulling images from the Docker Hub can be a bit slow and storing images on Dockr hub may not be desirable if your building applications with sensitive information. So why not have your own registry out in vCloud Air? It’s both private and super fast.

The following shows what we will be creating. A local Docker Registry that you can push and pull your images to and from. This allows your developers to work of a local registry when running docker VM’s in vCloud Air. Developers can work on-prem or off site depending on your organizations policy. If most of your Docker nodes are on your local network in your data center you may want to install a local registry in vSphere as well to save on network bandwidth to and from vCloud Air.

media_1423779339584.png

Log into your vCloud Air Account and create a new CENTOS 6.4 64Bit virtual machine (Note: if you already have a CentOS 6.5 or newer in your private catalog start with that and save time. )

media_1423771047284.png

Now name the new Virtual Machine and assign a network. You should assign a network that has external or proxyd internet access and has VPN or other method to access the virtual data center from your local network.

media_1423771263565.png

Select your new virtual machine in the vCloud Air Portal by clicking it

media_1423771478879.jpg

Now select to Manage VM in vCloud Director

media_1423771549173.jpg

Right click the virtual machine and click properties

media_1423771835897.png

Go to the Guest OS Customization Tab and Change the radio button to Specify a password and uncheck Require administrator to change password at first login then press ok.

media_1423771876642.jpg

Now start the vAPP

media_1423772035654.jpg

When the virtual machine is powered on and guest customization is complete either SSH into the new VM or open the console and login. Then type cat /etc/redhat-release and press enter

media_1423772426238.png

Notice it is only running CentOS 6.4 but we need 6.5 or newer to run Docker. Let’s fix that.

type yum clean all and press enter

media_1423772573657.png
yum clean all

Now type yum update -y and press enter

media_1423772929303.png

After the update completes type cat /etc/redhat-release and press enter and you should be updated to CentOS 6.6

media_1423772967750.png

Now we are ready to install Docker but first we need the extras packages repo. Type yum -y install epel-release and press enter

media_1423773080500.png

Now let’s install Docker by typing yum -y install docker-io

media_1423773176985.png

Now start the docker server by typing service docker start

media_1423773286592.png

Now let’s make sure it starts on boot with chkconfig docker on

media_1423773446986.png

Now pull the registry container from docker with docker pull registry

media_1423773490401.png

After a few minutes the image will be downloaded.

Now create a new directory in tmp named registry, this is where we will store the images instead of in the container so if the container is restarted we don’t lose the images.

media_1423773866542.png

Start the registry server by typing docker run -d -p 5000:5000 -v /docker_repo:/tmp/registry registry

media_1423774194825.png
docker run -d -p 5000:5000 -v /docker_repo:/tmp/registry registry

Now that our registry is running we can go to another docker node and pull and push files to it. But first we need to tell the Docker Daemon on the docker nodes to use an insecure channel to talk to the docker registry we created. Stop the docker server by typing service docker stop and press enter

media_1423774478650.png

Now type docker -d –insecure-registry 192.168.109.9:5000 &

media_1423776063794.png
docker -d --insecure-registry hostnameorIPofRegistryserver:5000 &

now pull an image from the Docker hub with docker pull vmtocloud/myblog and press enter (Notice it takes several minutes because it is pulled from the internet)

media_1423774681575.png

Once the image download completes tag the image by typing docker tag vmtocloud/myblog 192.168.109.2:5000/myblog

media_1423776094258.png

Type Docker images to see your images

media_1423776366220.png

Now type docker push 192.168.109.9:5000/myblog and press enter

media_1423775100150.png

Now let’s test that we can pull by spinning up a new Docker node and typing docker pull

media_1423776864462.png

After a minute or two it should complete and type docker images to verify it downloaded

media_1423777137898.png

Type docker run -d -p 80:80 192.168.109.9/myblog and press enter

media_1423777221155.png

Open a web page to the docker host and verify the container started! Enjoy all the extra time you will get back!!

media_1423777361134.png

Remember sharing is caring!

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.