Skip to content
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 build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 1 addition & 19 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -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 <admin@dappnode.io> (https://github.com/dappnode)",
"contributors": [
"Mariano Conti (nanexcool) (hhttps://github.com/nanexcool)",
Expand Down
11 changes: 5 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}