docker-tags/README.md

20 lines
397 B
Markdown
Raw Normal View History

2024-01-19 11:08:39 +00:00
# dockertags
2023-11-10 12:52:22 +00:00
2023-11-13 06:16:36 +00:00
List all tags for a Docker image on a remote registry.
## Usage
Build and install binaries into `/${CARGO_HOME}/bin` by default.
```
cargo install --path . --locked
```
> Cargo install ignores Cargo.lock by default.
> Use `--locked` to match `cargo build --release` would build.
Change the location by `--root` option.
```
2023-11-13 15:00:35 +00:00
cargo install --path . --locked --root /usr/local
2023-11-13 06:16:36 +00:00
```