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

v0.1.1 Release #1

Merged
merged 3 commits into from
Oct 21, 2019
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: {}