English | 简体中文
Proxy Registry API
- Intercept the Get Docker image API, synchronize the image to the Docker registry, and then forward the request to the registry server.
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
This project was inspired by the shencangsheng/easy-registry-mirror available in the GitHub project.
A short snippet describing the license (MIT)
MIT © Cangsheng Shen