Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Nessie GC as Docker Image section to downloads page #8332

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions site/docs/downloads/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,23 @@ curl -o nessie-quarkus-{{ versions.nessie }}-runner.jar \
java -jar nessie-quarkus-{{ versions.nessie }}-runner.jar
```

## Nessie GC Tool as Docker image

Docker images are multiplatform images for amd64, arm64, ppc64le, s390x.

=== "GitHub Container Registry"
[![ghcr.io GitHub Container Registry](https://img.shields.io/maven-central/v/org.projectnessie.nessie/nessie?label=ghcr.io+Docker&logo=docker&color=3f6ec6&style=for-the-badge&logoColor=white)](https://github.com/projectnessie/nessie/pkgs/container/nessie-gc)
```bash
docker pull ghcr.io/projectnessie/nessie-gc
docker run -p 19120:19120 ghcr.io/projectnessie/nessie-gc --help
```
=== "Quay.io"
[![quay.io Quay](https://img.shields.io/maven-central/v/org.projectnessie.nessie/nessie?label=quay.io+Docker&logo=docker&color=3f6ec6&style=for-the-badge&logoColor=white)](https://quay.io/repository/projectnessie/nessie-gc?tab=tags)
```bash
docker pull quay.io/projectnessie/nessie-gc
docker run -p 19120:19120 quay.io/projectnessie/nessie-gc --help
```

## Nessie GC Tool as a standalone uber jar

Requires Java 11, Java 17 recommended.
Expand Down