mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
17 lines
341 B
YAML
17 lines
341 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
geth-node:
|
|
image: mtotovski/go-ethereum:latest
|
|
container_name: geth-devnet
|
|
ports:
|
|
- "8545:8545"
|
|
- "30303:30303"
|
|
command: >
|
|
--dev
|
|
--http
|
|
--http.addr 0.0.0.0
|
|
--http.port 8545
|
|
--http.api eth,net,web3
|
|
--http.corsdomain "*"
|
|
--allow-insecure-unlock
|