This commit is contained in:
denislav-mladenov 2024-07-17 19:12:25 +03:00
parent 1c2b436223
commit cf5aaba993

View file

@ -5,8 +5,17 @@ services:
image: denislav-mladenov/go-ethereum:latest
ports:
- "8545:8545"
- "8546:8546"
- "30303:30303"
volumes:
- ./data:/root/.ethereum
command: --dev --http --http.addr 0.0.0.0 --http.port 8545 --http.api eth,net,web3,personal,miner
command: >
--dev
--http
--http.addr 0.0.0.0
--http.port 8545
--http.corsdomain "*"
--http.api personal,db,eth,net,web3
--ws
--ws.addr 0.0.0.0
--ws.port 8546
--ws.origins "*"
--ws.api personal,db,eth,net,web3