This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
clear-docker-images/README.md

45 lines
1.3 KiB
Markdown
Raw Normal View History

2022-02-09 00:03:09 +01:00
# clear-docker-images
`clear-docker-images` is a small rust binary made to cleanup old docker images but date, repository and tags.
## Usage
2022-02-09 00:07:38 +01:00
By default (it will change in the futur), `clear-docker-images` will select images that are older than 2 days old. You can choose to customize which repository will be selected and if specific tags should be ignored.
2022-02-09 00:03:09 +01:00
### 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
2022-02-09 00:07:38 +01:00
`-V, --version` : Print version information