Skip to content

Commit

Permalink
chore(Justfile): add also bolt-boost logs via boost-logs
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevbirb committed Oct 4, 2024
1 parent 3321956 commit 49b77a7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,13 @@ builder-logs:
@id=$(docker ps -n 100 | grep bolt-builder | awk -F' ' '{print $1}') && \
docker logs -f $id

# show the logs for the bolt devnet mev-boost sidecar
# show the logs for the bolt devnet bolt-boost sidecar
boost-logs:
@id=$(docker ps -n 100 | grep bolt-boost | awk -F' ' '{print $1}') && \
docker logs -f $id

# show the logs for the bolt devnet mev-boost sidecar
mev-boost-logs:
@id=$(docker ps -n 100 | grep bolt-mev-boost | awk -F' ' '{print $1}') && \
docker logs -f $id

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ Make sure you have the following requirements on your machine:

> [!WARNING]
> The Kurtosis CLI version tested is `0.88.16`. Some issues may arise if you are
> using a different version. Please make sure to install the correct version.
> using a different version.
>
> [Please make sure to install the correct version](https://docs.kurtosis.com/install-historical/).
Then, clone this repository and navigate to the root directory of the project:

Expand Down

0 comments on commit 49b77a7

Please sign in to comment.