From e3dec438a573e8eba709cf9bf9abfd1abfc8a669 Mon Sep 17 00:00:00 2001 From: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com> Date: Mon, 15 Jan 2024 13:52:01 +0700 Subject: [PATCH] docs: adds brew instructions (#3692) Signed-off-by: Adrian Cole --- .github/workflows/docker_push.yml | 2 +- README.md | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker_push.yml b/.github/workflows/docker_push.yml index 1873ebe5d3e..c4c1c288dd0 100644 --- a/.github/workflows/docker_push.yml +++ b/.github/workflows/docker_push.yml @@ -5,7 +5,7 @@ name: docker_push # documentation-only. on: # yamllint disable-line rule:truthy push: - tags: # e.g. release-1.2.3 + tags: # e.g. docker-1.2.3 - 'docker-[0-9]+.[0-9]+.[0-9]+**' jobs: diff --git a/README.md b/README.md index 06967e653f0..b24a65e9693 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,15 @@ Running via Docker: docker run -d -p 9411:9411 openzipkin/zipkin-slim ``` +Running via [Homebrew](https://formulae.brew.sh/formula/zipkin): +```bash +brew install zipkin +# to run in foreground +zipkin +# to run in background +brew services start zipkin +``` + ## Core Library The [core library](zipkin/src/main/java/zipkin2) is used by both Zipkin instrumentation and the Zipkin server.