From 62056e17ff174f4188894e802a336a37aa48a086 Mon Sep 17 00:00:00 2001 From: flisko Date: Tue, 7 Apr 2026 22:20:51 +0200 Subject: [PATCH] feat: update --- dappnode_package.json | 15 +++++---------- docker-compose.yml | 20 ++++++++++---------- 2 files changed, 15 insertions(+), 20 deletions(-) diff --git a/dappnode_package.json b/dappnode_package.json index 168705e..57813d1 100644 --- a/dappnode_package.json +++ b/dappnode_package.json @@ -1,7 +1,7 @@ { "name": "ethchain-geth.public.dappnode.eth", - "version": "10.0.79", - "upstream": "v1.17.1", + "version": "10.0.80", + "upstream": "v1.17.2", "autoupdate": true, "title": "Ethereum node (Geth + mainnet)", "description": "Ethereum Client - based on Geth", @@ -10,13 +10,8 @@ "chain": "ethereum", "image": { "restart": "always", - "ports": [ - "30303:30303", - "30303:30303/udp" - ], - "volumes": [ - "ethchain-geth:/root/.ethereum/ethchain-geth" - ], + "ports": ["30303:30303", "30303:30303/udp"], + "volumes": ["ethchain-geth:/root/.ethereum/ethchain-geth"], "environment": [ "NETWORK=mainnet", "EXTRA_OPTS=--http.api eth,net,web3,txpool" @@ -30,4 +25,4 @@ "WS endpoint": "ws://ethchain-geth.my.ava.do:8546", "EE endpoint (http)": "http://ethchain-geth.my.ava.do:8551" } -} \ No newline at end of file +} diff --git a/docker-compose.yml b/docker-compose.yml index f15467e..e94e9d2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,20 +1,20 @@ -version: '3.4' +version: "3.4" services: ethchain-geth.public.dappnode.eth: - image: 'ethchain-geth.public.dappnode.eth:10.0.79' + image: "ethchain-geth.public.dappnode.eth:10.0.80" build: context: ./build args: - VERSION: v1.17.1 + VERSION: v1.17.2 volumes: - - 'ethchain-geth:/root/.ethereum/ethchain-geth' + - "ethchain-geth:/root/.ethereum/ethchain-geth" ports: - - '443:443' - - '8545:8545' - - '8546:8546' - - '8551:8551' - - '30303:30303' - - '30303:30303/udp' + - "443:443" + - "8545:8545" + - "8546:8546" + - "8551:8551" + - "30303:30303" + - "30303:30303/udp" restart: always environment: - NETWORK=mainnet