https://github.com/connormac/geth-developer-docker
Docker setup for a quick developer instance of Geth
https://github.com/connormac/geth-developer-docker
docker ethereum geth
Last synced: about 2 months ago
JSON representation
Docker setup for a quick developer instance of Geth
- Host: GitHub
- URL: https://github.com/connormac/geth-developer-docker
- Owner: ConnorMac
- Created: 2017-08-29T10:29:44.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-19T14:21:04.000Z (almost 8 years ago)
- Last Synced: 2025-07-10T18:23:25.240Z (12 months ago)
- Topics: docker, ethereum, geth
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker geth developer node
Quick docker setup for a privatechain node that auto mines
Uses: https://github.com/amacneil/gethdev with a fix since for the initial run without a coinbase account (Will be rolling my own for customization)
## Docker
`docker run --name=geth -p 127.0.0.1:8545:8545 -d connormac/geth-dev-node`
## Unlocking accounts
The easiest is to just unlock the coinbase account indefinetly. To unlock:
1. `docker exec -it geth /bin/sh`
2. `geth attach "/tmp/geth.ipc"`
3. `web3.personal.unlockAccount(eth.coinbase, '', 0)`