Skip to content

Commit

Permalink
Fix besu_node command array in docker-compose (#424)
Browse files Browse the repository at this point in the history
* Fix `besu_node` command array in docker-compose

While trying to run the `docker-compose up` command I noticed that the commands for the `besu_node` doesn't have the correct syntax - the array was closing before the last command. 

This small fix moved the array closing bracket after the last command.

* add debugging comment

* Remove debugging comment

Co-authored-by: Alexandra Tran <[email protected]>
  • Loading branch information
dimboiu and alexandratran authored Jan 3, 2023
1 parent 050a86f commit 8e43edd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ to start the container.
"--sync-mode=FAST",
"--rpc-http-enabled",
"--rpc-http-cors-origins=*",
"--rpc-http-api=ETH,NET,CLIQUE,DEBUG,MINER,NET,PERM,ADMIN,EEA,TXPOOL,PRIV,WEB3"]
"--rpc-http-api=ETH,NET,CLIQUE,DEBUG,MINER,NET,PERM,ADMIN,EEA,TXPOOL,PRIV,WEB3",
"--engine-jwt-secret=/var/lib/besu/data/token.txt",
"--engine-host-allowlist=*",
"--engine-rpc-enabled=true"
"--engine-rpc-enabled=true"]
volumes:
- ./besu:/var/lib/besu/data
ports:
Expand Down

0 comments on commit 8e43edd

Please sign in to comment.