Add build and compose defintions for Merge 'fixturenet'. #24

Merged
telackey merged 6 commits from telackey/fixturenet into main 2022-10-14 20:11:56 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 6ec6fc1d75 - Show all commits

View File

@ -77,6 +77,8 @@ services:
fixturenet-eth-net:
networks:
Review

Add a comment about why we need this network defined.

Add a comment about why we need this network defined.
Review

Done

Done
# When the bootnode ENR is generated during the build, it requires a specific IP.
# The easiest way to do that is to use a private network.
fixturenet-eth-net:
driver: bridge
ipam:

View File

@ -19,7 +19,6 @@ http_port=8001
authrpc_port=8551
ENR=`cat $DATADIR/bootnode/enr.dat`
ENR_IP=`ip addr | grep 172 | awk '{print $2}' | cut -d '/' -f1`
exec lighthouse \
--debug-level $DEBUG_LEVEL \
@ -30,7 +29,7 @@ exec lighthouse \
--testnet-dir $TESTNET_DIR \
--enable-private-discovery \
--staking \
--enr-address $ENR_IP \
--enr-address $BOOTNODE_IP \
--enr-udp-port $network_port \
--enr-tcp-port $network_port \
--port $network_port \