Skip to content

Commit

Permalink
Update documentation in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
graillus committed Dec 14, 2020
1 parent 7c7fb5c commit e78a411
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gcrgc
[![Build Status](https://travis-ci.org/graillus/gcrgc.svg?branch=master)](https://travis-ci.org/graillus/gcrgc)
[![codecov.io](http://codecov.io/github/graillus/gcrgc/coverage.svg?branch=master)](http://codecov.io/github/graillus/gcrgc?branch=master)
[![Go Report Card](https://goreportcard.com/badge/github.com/graillus/gcrgc)](https://goreportcard.com/report/github.com/graillus/gcrgc)
[![GoDoc](https://godoc.org/github.com/graillus/gcrgc?status.svg)](https://godoc.org/github.com/graillus/gcrgc)
[![GoDoc](https://godoc.org/github.com/graillus/gcrgc?status.svg)](https://pkg.go.dev/github.com/graillus/gcrgc)
[![License MIT](https://img.shields.io/github/license/graillus/gcrgc.svg)](https://github.com/graillus/gcrgc/blob/master/LICENSE)

The GCR Garbage Collector
Expand All @@ -16,8 +16,8 @@ Initially based on the [gist](https://gist.github.com/ahmetb/7ce6d741bd5baa194a3

- Remove images older than the date specified with option `--date`
- Keep images within a given retention period `--retention-period`
- Exclude some image repositories with option `--exclude-repository`
- Exclude images with certain tag(s) from deletion with option `--exclude-tag`
- Exclude some image repositories with option `--exclude-repositories`
- Exclude images with certain tag(s) from deletion with option `--exclude-tags`
- Exclude images with tags matching a regexp pattern with option `--exclude-tag-pattern`
- Exclude images with tags matching a [SemVer](https://semver.org) pattern with option `--exclude-semver-tags`
> Note: The SemVer standard does not include the `v` or `V` prefix (e.g. v1.0.0), but as it is widely used, our Regexp will also match tags beginning with either `v` or `V`, so they will be excluded from deletion as well.
Expand All @@ -37,7 +37,7 @@ You can use a service account as well by setting the `GOOGLE_APPLICATION_CREDENT
1. Download your [desired version](https://github.com/graillus/gcrgc/releases)
2. Extract it
```bash
tar xvf gcrgc_0.3.2_linux_amd64.tar.gz
tar xvf gcrgc_0.4.0_linux_amd64.tar.gz
```
3. Move binary to desired destination
```bash
Expand Down

0 comments on commit e78a411

Please sign in to comment.