From 3814a315a37767e7b030d8b3633140e8e05341d2 Mon Sep 17 00:00:00 2001 From: Boris Kossev Date: Mon, 14 Mar 2022 17:07:53 +0100 Subject: [PATCH] Fix description how to run docker image built locally Per default there is no such image name as mentioned in the Readme as avaplatform/avalanchego. The default image name fixed here. Added also more information about branch based tag. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 990f0f1aa399..e221f1e706a6 100644 --- a/README.md +++ b/README.md @@ -104,10 +104,10 @@ To check the built image, run: docker image ls ``` -The image should be tagged as `avaplatform/avalanchego:xxxxxxxx`, where `xxxxxxxx` is the shortened commit of the Avalanche source it was built from. To run the avalanche node, run: +The image should be tagged both as `avalanchego:xxxxxxxx` or as `avalanchego:`, where `xxxxxxxx` is the shortened commit of the Avalanche source it was built from and `` the current checked out git branch. To run the avalanche node, run: ```sh -docker run -ti -p 9650:9650 -p 9651:9651 avaplatform/avalanchego:xxxxxxxx /avalanchego/build/avalanchego +docker run -ti -p 9650:9650 -p 9651:9651 avalanchego:xxxxxxxx /avalanchego/build/avalanchego ``` ## Running Avalanche