Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:<current_branch>`, where `xxxxxxxx` is the shortened commit of the Avalanche source it was built from and `<current_branch>` 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
Expand Down