Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 2.42 KB

docker-registry-proxy.md

File metadata and controls

54 lines (34 loc) · 2.42 KB

Docker Registry Proxy

Docker Registry Proxy is a pass-through docker registry (distribution) proxy with metadata caching, docker-compatible errors, prometheus metrics, etc.

Dependencies

This service requires the following other services:

Configuration

To enable this service, add the following configuration to your vars.yml file and re-run the installation process:

########################################################################
#                                                                      #
# docker-registry-proxy                                                #
#                                                                      #
########################################################################

docker_registry_proxy_enabled: true

docker_registry_proxy_hostname: registry.example.com

# List of the IPs allowed to access the registry (GET, HEAD, OPTIONS requests only)
docker_registry_proxy_allowed_ips: []

# List of the User Agent names(!) allowed to access the registry (GET, HEAD, OPTIONS requests only)
docker_registry_proxy_allowed_uas:
- docker

# List of the IPs trusted to access the registry (PATCH, POST, PUT, DELETE requests only)
docker_registry_proxy_trusted_ips: []

########################################################################
#                                                                      #
# /docker-registry-proxy                                             #
#                                                                      #
########################################################################

In the example configuration above, we configure the service to be hosted at https://registry.example.com.

Usage

After installation, you should be able to go to the URL as configured via docker_registry_proxy_hostname.

Recommended other services