Skip to content

Commit 8e43edd

Browse files
Fix besu_node command array in docker-compose (#424)
* 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]>
1 parent 050a86f commit 8e43edd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/HowTo/Get-Started/Installation-Options/Run-Docker-Image.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ to start the container.
105105
"--sync-mode=FAST",
106106
"--rpc-http-enabled",
107107
"--rpc-http-cors-origins=*",
108-
"--rpc-http-api=ETH,NET,CLIQUE,DEBUG,MINER,NET,PERM,ADMIN,EEA,TXPOOL,PRIV,WEB3"]
108+
"--rpc-http-api=ETH,NET,CLIQUE,DEBUG,MINER,NET,PERM,ADMIN,EEA,TXPOOL,PRIV,WEB3",
109109
"--engine-jwt-secret=/var/lib/besu/data/token.txt",
110110
"--engine-host-allowlist=*",
111-
"--engine-rpc-enabled=true"
111+
"--engine-rpc-enabled=true"]
112112
volumes:
113113
- ./besu:/var/lib/besu/data
114114
ports:

0 commit comments

Comments
 (0)