drclient

A docker registry client command line utility and Python library


License
MIT
Install
pip install drclient==0.0.7

Documentation

drclient

A docker registry client command line utility and Python library

PyPi Code style: black

Overview

drclient uses the Docker registry REST API to interact with the registry not requiring a Docker daemon to be installed.

Features

  • Get information about a remote image
  • Pull images from a docker registry into:
    • a local directory
    • a tar file

Installation

pip install drclient

Usage

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