A Python project for managing private docker repositories.
This utility uses the Click library for Python. If you're wondering why instead of optparse/argparse/etc it turns out that question is already answered.
The subcommands are pluggable and located in the commands directory. Just name your file cmd_[name_of_command].py
and take a look at the cmd_example.py:
To easily iterate on the tool in development use --editable
pip install --editable .
- Implement logic to remove orphaned images
- Add logging
- Add tests