diff --git a/build/Dockerfile b/build/Dockerfile index b1aeadd..05231ed 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /usr/src/app RUN apk add --no-cache make gcc musl-dev linux-headers git jq -ARG BRANCH=v1.9.3 +ARG BRANCH=v1.9.6 RUN git clone -b $BRANCH https://github.com/ethereum/go-ethereum.git RUN cd go-ethereum && make geth diff --git a/dappnode_package.json b/dappnode_package.json index fc4265f..8a81b6e 100644 --- a/dappnode_package.json +++ b/dappnode_package.json @@ -1,29 +1,11 @@ { "name": "geth.dnp.dappnode.eth", "version": "0.1.1", - "upstreamVersion": "1.9.3", + "upstreamVersion": "1.9.6", "shortDescription": "Geth is the official Go implementation of the Ethereum protocol.", "description": "Ethereum is a global, open-source platform for decentralized applications where you can write code that controls digital value, runs exactly as programmed, and is accessible anywhere in the world.", - "avatar": "/ipfs/QmbxQDuXW8AjrP4UKbG7Aothehvzg5PdLDBn7cdGWjvpmU", "type": "library", "chain": "ethereum", - "image": { - "path": "", - "hash": "", - "size": "", - "restart": "always", - "ports": [ - "30303", - "30303/udp", - "30304/udp" - ], - "volumes": [ - "data:/root/.ethereum" - ], - "environment": [ - "EXTRA_OPTS=--rpcapi eth,net,web3,txpool" - ] - }, "author": "DAppNode Association (https://github.com/dappnode)", "contributors": [ "Mariano Conti (nanexcool) (hhttps://github.com/nanexcool)", diff --git a/docker-compose.yml b/docker-compose.yml index 9cab3ae..b497f94 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,12 +6,11 @@ services: volumes: - 'geth:/root/.ethereum' environment: - - EXTRA_OPTS= + - EXTRA_OPTS=--rpcapi eth,net,web3,txpool ports: - - '127.0.0.1:8546:8546' - - '127.0.0.1:8545:8545' - - '61313:30303' - - '61313:30303/udp' - - '61314:30304/udp' + - '30303' + - '30303/udp' + - '30304/udp' + restart: always volumes: geth: {}