Skip to content
Open
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
15 changes: 5 additions & 10 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
Expand All @@ -30,4 +25,4 @@
"WS endpoint": "ws://ethchain-geth.my.ava.do:8546",
"EE endpoint (http)": "http://ethchain-geth.my.ava.do:8551"
}
}
}
20 changes: 10 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading