diff --git a/dappnode_package.json b/dappnode_package.json index 168705e..1155d6b 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.81", + "upstream": "v1.17.3", "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..215a72a 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.81" build: context: ./build args: - VERSION: v1.17.1 + VERSION: v1.17.3 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