Skip to content

Commit

Permalink
fix: Resolve Earthfile line 0:0 target docker not found when building…
Browse files Browse the repository at this point in the history
… audi | NPG-000 (#547)

# Description

The readme to **Audit The Tally** instructs to run `earthly +build &&
earthly +docker` when it should be `earthly +build && earthly
+docker-local`.

Creating a pr because other core tools follows the _docker-local_
convention.

## Type of change
- [x] Bug fix (non-breaking change which fixes an issue)

Co-authored-by: Oleksandr Prokhorenko <[email protected]>
Co-authored-by: Steven Johnson <[email protected]>
  • Loading branch information
3 people authored Sep 6, 2023
1 parent 5c95e14 commit 357f230
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/audit/balance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ MOUNT_PATH=/tmp/fund9-leader-1:/leader1stuff
HISTORICAL_STATE=/leader1stuff/persist/leader-1
BLOCK_0=/leader1stuff/artifacts/block0.bin

earthly +build && earthly +docker
earthly +build && earthly +docker-local
docker run --net=host -v $MOUNT_PATH --env STORAGE_PATH=$HISTORICAL_STATE --env GENESIS_PATH=$BLOCK_0 jormungandr
```

Expand All @@ -37,4 +37,4 @@ curl http://127.0.0.1:10000/api/v0/vote/active/plans > activevoteplans.json
##### Make sure the jormungandr container has been stopped once you have successfully retrieved the results.
```bash
sudo docker docker stop $JORMUNGANDR_CONTAINER_ID
```
```

0 comments on commit 357f230

Please sign in to comment.