2020-12-17 06:43:57 -05:00
|
|
|
# `mirror.kontain.me`
|
|
|
|
|
|
|
|
|
|
`docker pull mirror.kontain.me/[image]` will pull the an image (if it can) and
|
|
|
|
|
cache the manifest and layers. Subsequent pulls will, if possible, serve from
|
|
|
|
|
the cache.
|
|
|
|
|
|
2020-12-21 13:36:38 -05:00
|
|
|
Only public images are supported.
|
2020-12-17 06:43:57 -05:00
|
|
|
|
2020-12-21 13:36:38 -05:00
|
|
|
This can act as a simple [registry
|
2020-12-17 06:43:57 -05:00
|
|
|
mirror](https://docs.docker.com/registry/recipes/mirror/) which can reduce the
|
|
|
|
|
number of pulls from the original registry, in case they impose request limits
|
|
|
|
|
or exorbitant bandwidth costs or latencies.
|
2020-12-21 13:36:38 -05:00
|
|
|
|
|
|
|
|
_This should not be depended on in a production environment. There is no SLO,
|
|
|
|
|
ad you should not trust me not to modify the image._
|
|
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
|
|
Pull a mirrored [`busybox`](https://hub.docker.com/_/busybox) image:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
docker pull mirror.kontain.me/busybox
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Or by tag:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
docker pull mirror.kontain.me/busybox:musl
|
|
|
|
|
```
|