Skip to content

shencangsheng/registry-mirror-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

registry-mirror-proxy

Docker Pulls

English | 简体中文

Proxy Registry API

Features:

  1. Intercept the Get Docker image API, synchronize the image to the Docker registry, and then forward the request to the registry server.

Principle

graph TD;
    A[Docker request] --> B[Docker registry proxy];
    B --> C{Get Docker image API?};
    C -- Yes --> D[Docker pull image];
    C -- No --> E[Docker registry server];
    D --> F[Upload Docker registry];
    F --> E
    E -- Response --> B
    B -- Response --> A
Loading

Credits

This project was inspired by the shencangsheng/easy-registry-mirror available in the GitHub project.

License

A short snippet describing the license (MIT)

MIT © Cangsheng Shen