go-ethereum/docker-compose.yml
Will Meister 1efe552752
Fix geth timestamp incrementing (#14)
* Making geth only update timestamp when it is over 600s older than current timestamp.
* Commenting out logic check to validate timestamp works the way it no longer works
2020-08-19 15:07:22 -05:00

21 lines
366 B
YAML

version: "3"
services:
geth_l2:
build:
context: .
dockerfile: Dockerfile
volumes:
- l2-node-data:/mnt/l2-node/l2:rw
environment:
- CLEAR_DATA_KEY
- TARGET_GAS_LIMIT
- VOLUME_PATH=/mnt/l2-node/l2
- HOSTNAME=geth_l2
- PORT=8545
- NETWORK_ID=108
ports:
- 8545:8545
volumes:
l2-node-data: