Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump ethereum/go-ethereum to v1.13.15 #32

Merged
merged 1 commit into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sepolia-geth.dnp.dappnode.eth",
"version": "0.1.3",
"upstreamVersion": "v1.13.14",
"upstreamVersion": "v1.13.15",
"upstreamRepo": "ethereum/go-ethereum",
"upstreamArg": "UPSTREAM_VERSION",
"shortDescription": "Execution client Geth for Sepolia (a PoS test network for Ethereum)",
Expand Down
16 changes: 9 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
version: "3.5"
services:
geth:
image: "geth.sepolia-geth.dnp.dappnode.eth:0.1.1"
image: geth.sepolia-geth.dnp.dappnode.eth:0.1.1
build:
context: .
args:
UPSTREAM_VERSION: v1.13.14
UPSTREAM_VERSION: v1.13.15
volumes:
- "sepolia:/sepolia"
- sepolia:/sepolia
ports:
- "35415:35415/tcp"
- "35415:35415/udp"
- 35415:35415/tcp
- 35415:35415/udp
restart: unless-stopped
environment:
EXTRA_OPTIONS: "--http.api eth,engine,net,web3,txpool --ws.api eth,engine,net,web3,txpool"
EXTRA_OPTIONS: >-
--http.api eth,engine,net,web3,txpool --ws.api
eth,engine,net,web3,txpool
P2P_PORT: 35415
SYNCMODE: "snap"
SYNCMODE: snap
volumes:
sepolia: {}