Skip to content

Commit

Permalink
Add nethermind-node to linea-mainnet and linea-sepolia (#270)
Browse files Browse the repository at this point in the history
* feat: add nethermind-node to linea-mainnet and linea-sepolia

* Update docker/linea-mainnet/docker-compose.yml

Co-authored-by: Julien Marchand <julien-marchand@users.noreply.github.com>
Signed-off-by: Marcos Antonio Maceo <35319980+stdevMac@users.noreply.github.com>

* Update docker/linea-sepolia/docker-compose.yml

Co-authored-by: Julien Marchand <julien-marchand@users.noreply.github.com>
Signed-off-by: Marcos Antonio Maceo <35319980+stdevMac@users.noreply.github.com>

* fix: update spaces on nethermind docker images

* feat: update nethermind image to 1.30.0-rc

* feat: update to nethermind latest version

---------

Signed-off-by: Marcos Antonio Maceo <35319980+stdevMac@users.noreply.github.com>
Co-authored-by: Julien Marchand <julien-marchand@users.noreply.github.com>
  • Loading branch information
stdevMac and julien-marchand authored Dec 12, 2024
1 parent b6e47f2 commit b868219
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docker/linea-mainnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,22 @@ services:
- ./besu-genesis.json:/var/lib/besu/genesis.json:ro
- ../config/linea-besu-sequencer/log4j.xml:/var/lib/besu/log4j.xml
- ./static-nodes.json:/var/lib/besu/static-nodes.json

nethermind-node:
hostname: nethermind-node
container_name: nethermind-node
image: nethermind/nethermind:1.30.0
restart: unless-stopped
command:
--datadir /nethermind/nethermind_db
--config linea-mainnet
--JsonRpc.Enabled=true
--JsonRpc.Host=0.0.0.0
--JsonRpc.Port=8545
--Metrics.Enabled=true
--Metrics.ExposePort=8008
ports:
- 8545:8545
- 8008:8008
volumes:
- linea-mainnet:/nethermind/nethermind_db
19 changes: 19 additions & 0 deletions docker/linea-sepolia/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,22 @@ services:
- ./besu-genesis.json:/var/lib/besu/genesis.json:ro
- ../config/linea-besu-sequencer/log4j.xml:/var/lib/besu/log4j.xml
- ./static-nodes.json:/var/lib/besu/static-nodes.json

nethermind-node:
hostname: nethermind-node
container_name: nethermind-node
image: nethermind/nethermind:1.30.0
restart: unless-stopped
command:
--datadir /nethermind/nethermind_db
--config linea-sepolia
--JsonRpc.Enabled=true
--JsonRpc.Host=0.0.0.0
--JsonRpc.Port=8545
--Metrics.Enabled=true
--Metrics.ExposePort=8008
ports:
- 8545:8545
- 8008:8008
volumes:
- linea-sepolia:/nethermind/nethermind_db

0 comments on commit b868219

Please sign in to comment.