Skip to content

barisates/docker-registry-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-registry-server

Deploy a Docker Trusted Registry (DTR) server, where you can storing and distributing docker images on your local network.

Test Environment

  • CentOS Linux release 8.1.1911 (Core)
  • Docker 19.03.5

Tools & Images

SSL Certificate

Docker Trusted Registry (DTR) requests the certificate file as .crt and .key. My certificate is .pfx file. First, using OpenSSL, I extract .key and .crt from my certificate with .pfx extension. (Certificate extraction was done on Windows 10 operating system.)

Extract .key file.

First, we extract the encrypted .key file.

openssl pkcs12 -in CERTIFICATE_FILE.pfx -nocerts -out keyfile-encrypted.key

To unencrypt the key, do:

openssl rsa -in keyfile-encrypted.key -out keyfile.key
Extract .crt file.
openssl pkcs12 -in CERTIFICATE_FILE.pfx -clcerts -nokeys -out certfile.crt

Docker Trusted Registry (DTR) Server

  • Goto root directory.
  • Create root/certs directory and copy the .crt and .key files into the directory.
  • Create root/registry directory and copy the registry/config.yml files into the directory.

We configure our DTR server to accept CORS for Docker Registry UI.

    Access-Control-Allow-Origin: ['*']
    Access-Control-Allow-Methods: ['HEAD', 'GET', 'OPTIONS', 'DELETE']
    Access-Control-Expose-Headers: ['Docker-Content-Digest']
Restricting Access
  • Create a folder named root/auth.
  • Create a password file with following command.
docker run \
  --entrypoint htpasswd \
  registry:2 -Bbn testuser testpassword > auth/htpasswd
  • Deploy the DTR server container with certificate files and new configuration. (If the docker registry image is not installed, it will be pull automatically.)
docker run -d \
  --restart=always \
  --name registry \
  -v "$(pwd)"/certs:/certs \
  -v "$(pwd)"/auth:/auth \
  -v "$(pwd)"/registry/config.yml:/etc/docker/registry/config.yml \
  -v "$(pwd)"/registry/lib:/var/lib/registry \
  -e REGISTRY_HTTP_ADDR=0.0.0.0:443 \
  -e REGISTRY_HTTP_TLS_CERTIFICATE=/certs/certfile.crt \
  -e REGISTRY_HTTP_TLS_KEY=/certs/keyfile.key \
  -p 443:443 \
  registry:2
  • Login registry server.
docker login myregistrydomain.com

Fixing Certificate Issue

After completing the installation, you may get an error as follows during docker pull and push operations; Error response from daemon: Get https://registry.yourdomain.com/v2/: x509: certificate signed by unknown authority

To fix this problem;

  • Go to the /etc/docker/certs.d directory.
  • Create a folder with the same name as your domain address.
  • Copy your .crt file to this folder.

This example should be like this; /etc/docker/certs.d/registry.yourdomain.com/certfile.crt

Docker Trusted Registry (DTR) User Interface

We use Docker Registry UI to manage our images on our DTR server through a user interface.

docker run -d \
  --restart=always \
  --name registry-ui \
  -p 80:80 \
  -e URL=https://registry.yourdomain.com \
  -e DELETE_IMAGES=true \
  joxit/docker-registry-ui:static
Resources

About

Deploy a Docker Trusted Registry (DTR) server, where you can storing and distributing docker images on your local network.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published