mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
12 lines
282 B
YAML
12 lines
282 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
geth:
|
|
image: denislav-mladenov/go-ethereum:latest
|
|
ports:
|
|
- "8545:8545"
|
|
- "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
|
|
|