Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
making committed Dec 24, 2024
1 parent ab5341d commit 0fe90f0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,16 @@ a simple OTLP log store
## Run with Pre-built Native Binaries

Lognroll offers pre-built binaries for x86_64-pc-linux, x86_64-apple-darwin, and aarch64-apple-darwin. If you are using one of these environments, downloading these binaries is the easiest way to get started.
Lognroll offers pre-built binaries for x86_64-pc-linux, aarch64-pc-linux, x86_64-apple-darwin, and aarch64-apple-darwin. If you are using one of these environments, downloading these binaries is the easiest way to get started.

* For x86_64-pc-linux
```
curl -sL -o lognroll https://github.com/making/lognroll/releases/download/tip/lognroll-x86_64-pc-linux
```
* For aarch64-pc-linux
```
curl -sL -o lognroll https://github.com/making/lognroll/releases/download/tip/lognroll-aarch64-pc-linux
```
* For x86_64-apple-darwin (Intel Mac)
```
curl -sL -o lognroll https://github.com/making/lognroll/releases/download/tip/lognroll-x86_64-apple-darwin
Expand Down Expand Up @@ -51,14 +55,14 @@ Run with the native image version. It starts up quickly (usually in less than a

```
mkdir -p data
docker run --rm -p 4318:4318 -v ./data:/data -e LOGNROLL_DB_PATH=/data/lognroll.db ghcr.io/making/lognroll:native
docker run --rm -p 4318:4318 -v ./data:/data -e LOGNROLL_DB_PATH=/data/lognroll.db ghcr.io/categolj/lognroll:native
```

Or the JVM version will work in any environment.

```
mkdir -p data
docker run --rm -p 4318:4318 -v ./data:/data -e LOGNROLL_DB_PATH=/data/lognroll.db ghcr.io/making/lognroll:jvm
docker run --rm -p 4318:4318 -v ./data:/data -e LOGNROLL_DB_PATH=/data/lognroll.db ghcr.io/categolj/lognroll:jvm
```

## Build and run
Expand Down

0 comments on commit 0fe90f0

Please sign in to comment.