Crates.io | corrator |
lib.rs | corrator |
version | 1.4.0 |
source | src |
created_at | 2023-04-05 16:31:24.191328 |
updated_at | 2024-09-26 23:26:03.086879 |
description | A tool to verify the versions of apps used inside docker containers. |
homepage | https://github.com/natecox/corrator |
repository | https://github.com/natecox/corrator |
max_upload_size | |
id | 831223 |
size | 133,177 |
Keep tabs on the corrosion in your docker containers.
Corrator is a command line tool for querying docker containers and requesting version numbers for apps in them.
If you have to maintain lots of containers, each with their own set of applications and dependencies, you may be familiar with how difficult it can be to maintain currency. You don't want to let your dependencies go out of their support life-cycles, but you also don't want to have to update a master list somewhere any time you push an update.
Corrator lets you define a set of containers, each with a list of important dependencies. Running corrator will pull down the container, bash into it, and run a version command on each one. Then it spits out what it finds in minimal form.
For dependencies which happen to be tracked by the excellent endoflife.date service you can optionally ask corrator to look up the current end of life date for the version currently installed and tell you that too.
See the rust docs for this.
You can install corrator straight from crates.io with the following:
cargo install corrator
Assuming you have a valid config file (see below), you can simply run corrator
from the command line.
corrator
For additional options, see corrator --help
.
Alternatively, if you want to consume JSON from a URL (e.g., you generate the config on the fly) you
can use the -u
flag to provide a URL.
You can find the reference schema here.
The heart of corrator is a configuration directory featuring two files:
[bash]
# The actual command to run to get a version
version_command = "bash --version"
# Command's version format as a regex
# "version" named group is mandatory
version_regex = '''GNU bash, version (?P<version>[0-9.]+)'''
# Optional for endoflife.date support
[eol]
# The "product name" as it exists in endoflife.date
# yes, I'm aware bash isn't actually on endoflife.date
product_name = "bash"
# regex for which parts of version endofdate is looking for
# e.g., Rails only wants version in X.X format
version_regex = '''.+'''
[ubuntu]
# The docker registry full path
path = "ubuntu"
# An array of applications to be queried
# These must be defined in this file
apps = [ "bash" ]
# An array of tags
# These can be anything sting you want
# You can filter them with `--tag` and `--filter`
# See `corrator --help` for more detail
tags = [ "mytag1", "mytag2" ]
Corrator will look for these files in the following locations, in order:
corrator --help
to find this path)-c path_to_directory
There is also an examples
in this repository to get you started.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.