add README.md

This commit is contained in:
DataHearth 2022-02-09 00:03:09 +01:00
parent cd759448d4
commit b817596cb2
No known key found for this signature in database
GPG Key ID: E88FD356ACC5F3C4
3 changed files with 47 additions and 2 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/target
.DS_STORE

View File

@ -3,8 +3,10 @@ name = "clear-docker-images"
version = "0.2.0"
edition = "2021"
authors = ["Antoine <DataHearth> Langlois"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "small binary to clean old docker images (mostly in CI)"
repository = "https://github.com/DataHearth/clear-docker-images"
homepage = "https://github.com/DataHearth/clear-docker-images"
readme = "README.md"
[dependencies]
serde = { version = "1.0", features = ["derive"] }

42
README.md Normal file
View File

@ -0,0 +1,42 @@
# clear-docker-images
`clear-docker-images` is a small rust binary made to cleanup old docker images but date, repository and tags.
## Usage
### Docker container
```bash
docker run --name clear-docker-image -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/datahearth/clear-docker-image <OPTIONS>
```
### Binary
```bash
mkdir -p $HOME/.local/bin
export PATH=$PATH:$HOME/.local/bin
# Available distribution: linux | darwin
wget -o $HOME/.local/bin/clear-docker-images ~/. https://github.com/DataHearth/clear-docker-images/releases/download/v0.2.0/x86_x64-<DISTRIBUTION>-clear-docker-images
clear-docker-images <OPTIONS>
```
### Source
```bash
git clone https://github.com/DataHearth/clear-docker-images.git
cd clear-docker-images
cargo install --path .
clear-docker-images <OPTIONS>
```
## Flags
`--dry-run` : image cleanup will not be triggered
`--force` : should docker force image removal (it may create orphan images)
`-h, --help` : Print help information
`-r, --repository <REPOSITORY>` : filter by repository name
`-t, --tags <TAGS>` : add tags exclusion
`-V, --version` : Print version information