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 drclient
Get information for the busybox image
drclient info busybox
Pull the busybox image into a temporary directory
drclient pull busybox
Pull the busybox image into a named directory
drclient pull busybox -d /tmp/busybox
Pull the busybox image into a tar file
drclient pull busybox -t /tmp/busybox.tar