120k views
4 votes
How to setup a private docker registry

User Alexgolec
by
7.5k points

1 Answer

3 votes

Final answer:

To set up a private Docker registry, install Docker, run the Docker registry as a container, and then tag, push, and pull images to your registry. Secure the registry for production use with authentication, reverse proxy, or TLS.

Step-by-step explanation:

To set up a private Docker registry, you'll need to follow a few essential steps. First, ensure that Docker is installed on your system. You can then run the registry as a container using the official Docker image. Here is a basic rundown of the steps:

  • Run the registry by executing the command docker run -d -p 5000:5000 --name registry registry:2
  • Tag an image for your private registry with docker tag myimage localhost:5000/myimage
  • Push the image to your registry using docker push localhost:5000/myimage
  • Pull the image from your registry with docker pull localhost:5000/myimage

For production environments, it's important to secure your registry. You might consider adding authentication, using a reverse proxy, or setting up TLS. Also, note that for persistent storage, you should consider mounting a volume at /var/lib/registry.

Remember to replace "myimage" with the actual image you want to use in your registry. And don't forget to replace "localhost" with the real hostname if you're deploying the registry on a server.

User Crackhaus
by
7.8k points