A docker registry client command line utility and Python library
drclient uses the Docker registry REST API to interact with the registry not requiring a Docker daemon to be installed.
- Get information about a remote image
- Pull images from a docker registry into:
- a local directory
- a tar file
pip install drclientGet information for the busybox image
drclient info busyboxPull the busybox image into a temporary directory
drclient pull busyboxPull the busybox image into a named directory
drclient pull busybox -d /tmp/busyboxPull the busybox image into a tar file
drclient pull busybox -t /tmp/busybox.tar