Becoming a Pro: Linux Software Installation Guide No. 27 – Setting Up a Private Docker Registry

Becoming a Pro: Linux Software Installation Guide No. 27 - Setting Up a Private Docker Registry

Installation

1. Pull the private registry image

docker pull registry

2. Start the private registry container

docker run -di --name=registry -p 5000:5000 registry

3. Check

Open a browser and enter the address http://ip:5000/v2/_catalog. You should see `{“repositories”:[]}` indicating that the private registry has been successfully set up and is currently empty.

4. Configure the Docker private registry address

Edit daemon.json

vi /etc/docker/daemon.json

Add the following content

{"insecure-registries":["ip:5000"]}

5. Restart Docker

systemctl restart docker

Leave a Comment