This is a small tool to delete tags, or, to be more correct, delete image manifests, from a Docker Registry implementing the API v2.
Please be aware of that this is a soft delete. You've to run the registry garbage collection after this tool has been applied.
For Docker Registry v2 API specification see https://docs.docker.com/registry/spec/api/.
Information about the needed garbage collection is described at https://docs.docker.com/registry/garbage-collection/.
- v0.4 - added support for basic auth secured registry servers, introducing
--basicauth-user
and--basicauth-pw
(thanks to @kekru for his pull request) - v0.3 - fixing deletion if a digest is associated with multiple tags, introducing the
--ignore-ref-tags
flag. - v0.2 - added support for registry server using self signed certificates
- v0.1 - first version with basics
This tool was implemented and tested on Ubuntu Linux 14.04, 16.04 and on MacOS 10.12 using Python 2.7. The latest used Docker Registry was version 2.5.1.
You need to install the Python module requests:
$ pip install requests
Be sure to configure your registry server to allow deletion (see https://docs.docker.com/registry/configuration/#/delete).
Download the file cleanreg.py or clone this repository to a local directory.
usage: cleanreg.py [-h] [-v] -r REGISTRY [-p] [-y] [-n REPONAME]
[-k KEEPIMAGES] [-f REPOSFILE] [-c CACERT] [-i]
[-u BASICAUTHUSER] [-pw BASICAUTHPW]
Removes images on a docker registry (v2).
optional arguments:
-h, --help show this help message and exit
-v, --verbose The verbosity level.
-r REGISTRY, --registry REGISTRY
The registry server to connect to, e.g.
http://1.2.3.4:5000
-p, --proxy Use system level proxy settings accessing registry
server if set. By default, the registry server will be
accessed without a proxy.
-y, --yes, --assume-yes
If set no user action will appear and all questions
will be answered with YES
-q, --quiet [deprecated] If set no user action will appear and all
questions will be answered with YES
-n REPONAME, --reponame REPONAME
The name of the repo which should be cleaned up
-k KEEPIMAGES, --keepimages KEEPIMAGES
Amount of images (not tags!) which should be kept for
the given repo.
-f REPOSFILE, --reposfile REPOSFILE
A file containing the list of Repositories and how
many images should be kept.
-c CACERT, --cacert CACERT
Path to a valid CA certificate file. This is needed if
self signed TLS is used in the registry server.
-i, --ignore-ref-tags
Ignore a digest, if it is referenced by multiple tags.
ATTENTION: the default if False!
-u BASICAUTHUSER, --basicauth-user BASICAUTHUSER
The username, if the registry is protected with basic
auth
-pw BASICAUTHPW, --basicauth-pw BASICAUTHPW
The password, if the registry is protected with basic
auth
In addition, you can obtain the public docker image to run it in a container:
docker run --rm hcguersoy/cleanreg:v0.4
The image is hosted here: https://hub.docker.com/r/hcguersoy/cleanreg/
Hint: latest
tag is not provided anymore!
Cleaning up a single repository called mysql on registry server 192.168.56.2:5000 and keeping 5 of the latest images:
./cleanreg.py -r http://192.168.56.2:5000 -n mysql -k 5
Be aware that you don't keep here the five last tags but digests/images. As a digest can be associated with multiple tags this can result in deletion of images which you not intended in!
To be secure use the -i
flag:
./cleanreg.py -r http://192.168.56.2:5000 -n mysql -k 5 -i
Same as above but ignore images which are associated with multiple tags.
Cleaning up multiple repositories defined in a configuration file:
./cleanreg.py -r http://192.168.56.2:5000 -f cleanreg-example.conf
The configuration file has the format <repository name> <images to keep>
. An example file can be found in the repository.
If you've to use a repositories definition file (parameter -f
) while using the image distribution you should mount that file into your container:
docker run --rm -it -v $(pwd)/cleanreg-example.conf:/cleanreg-example.conf hcguersoy/cleanreg:<version> -r http://192.168.56.2:5000 -f cleanreg-example.conf
There is a simple script added to create multiple image tags (based on busybox
) on your registry server.
If you have installed a semi secure registry server using TLS and self signed certificates you have to provide the path to the CA certificate file:
./cleanreg.py -r https://192.168.56.3:5000 -c /my/certifacates/ca.pem -f cleanreg-example.conf
If you run cleanreg in a container you should not forget to mount the certificate file into the container like the configuration file above.
If your registry is protected with basic auth and the username is test
and the password is secret
, you have to pass these credentials to cleanreg.
./cleanreg.py -r https://192.168.56.3:5000 -u test -pw secret -f cleanreg-example.conf
Example on running the garbage collection:
$ docker run --rm \
-v /docker/registry2:/var/lib/registry:rw \
registry:latest bin/registry \
garbage-collect /etc/docker/registry/config.yml
This maps the local directory /docker/registry2 into the container, and calls the garbage collection. The pointed config file is the default configuration. The registry itself should be stopped before running this.
Feel free to contribute your changes as a PR. Please ensure that the tests run without errors and provide tests for additional functionality.
Prerequisites:
- Bash
- Locally installed Docker engine (remote execution is not yet implemented; runs with Docker for MacOS fine)
You can run all tests, with the runAllTests.sh script:
cd test
./runAllTests.sh
This will run all tests and repeat them for different versions of the Docker Registry.
To run a single test, change to the test/tests
directory and run a test script:
cd test/tests
./simple_clean.sh
By default the test will start the Docker Registry from Docker Hub with the tag latest
. To specify another registry version, write its Docker Hub tag to the environment variable REGISTRYTAG
.
cd test/tests
export REGISTRYTAG=2.5.1
./simple_clean.sh