From b9223030ecd826fa65a9aed16a316b335d18ec81 Mon Sep 17 00:00:00 2001 From: Maciej Dudkowski Date: Fri, 11 Jul 2025 12:25:45 -0400 Subject: [PATCH 1/2] Added Docker information to README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index fdf4f7903..08aa5072d 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,17 @@ Reference [the documentation](https://docs.temporal.io/cli) for detailed install 2. Extract the downloaded archive. 3. Add the `temporal` binary to your `PATH` (`temporal.exe` for Windows). +### Run via Docker + +[Temporal CLI on DockerHub](https://hub.docker.com/r/temporalio/temporal) + + docker run --rm temporalio/temporal + +Note that for dev server to be accessible from host system, it needs to listen on external IP and the ports need to be forwarded: + + docker run --rm -p 7233:7233 -p 8233:8233 temporalio/temporal:latest server start-dev --ip 0.0.0.0 + # UI is now accessible from host at http://localhost:8233/ + ### Build 1. Install [Go](https://go.dev/) From 3ba262f1acae628e2745c8b0053c6c346473ee0f Mon Sep 17 00:00:00 2001 From: Maciej Dudkowski Date: Tue, 15 Jul 2025 11:44:59 -0400 Subject: [PATCH 2/2] Fixed example Docker command Co-authored-by: Dan Davison --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 08aa5072d..79608ce3f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Reference [the documentation](https://docs.temporal.io/cli) for detailed install [Temporal CLI on DockerHub](https://hub.docker.com/r/temporalio/temporal) - docker run --rm temporalio/temporal + docker run --rm temporalio/temporal --help Note that for dev server to be accessible from host system, it needs to listen on external IP and the ports need to be forwarded: