From 7777938294047377cb4ce9f4d8649c45055596ed Mon Sep 17 00:00:00 2001 From: Tom Birch Date: Fri, 9 Aug 2024 12:38:28 +1000 Subject: [PATCH] Explicitly map hostport in README (#1255) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8643c71ec..e8d3eee00 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ curl -O \ # to find the latest tag docker run \ -v $(pwd)/basic_cas.json:/config \ - -p 50051 \ + -p 50051:50051 \ ghcr.io/tracemachina/nativelink:v0.5.1 \ config ``` @@ -77,7 +77,7 @@ Invoke-WebRequest ` # Note: Adjust the path if the script is not run from the directory containing basic_cas.json docker run ` -v ${PWD}/basic_cas.json:/config ` - -p 50051 ` + -p 50051:50051 ` ghcr.io/tracemachina/nativelink:v0.5.1 ` config ```