Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #34 from dappnode/merge-changes
Browse files Browse the repository at this point in the history
Merge changes
  • Loading branch information
tropicar authored Jul 19, 2022
2 parents 6ce399e + 526d25b commit 5eb37c7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
16 changes: 15 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,18 @@ ARG UPSTREAM_VERSION

FROM ethereum/client-go:${UPSTREAM_VERSION}

ENTRYPOINT geth --ropsten --http --http.addr 0.0.0.0 --http.corsdomain "*" --http.vhosts "*" --ws --ws.origins "*" --ws.addr 0.0.0.0 --syncmode ${SYNCMODE:-snap} --metrics --metrics.addr 0.0.0.0 $EXTRA_OPTIONS
COPY jwtsecret /jwtsecret

ENTRYPOINT geth --ropsten \
--http --http.addr 0.0.0.0 \
--http.corsdomain "*" \
--http.vhosts "*" \
--ws --ws.origins "*" \
--ws.addr 0.0.0.0 \
--syncmode ${SYNCMODE:-snap} \
--metrics --metrics.addr 0.0.0.0 \
--authrpc.port 8551 \
--authrpc.vhosts "*" \
--authrpc.jwtsecret "/jwtsecret" \
--override.terminaltotaldifficulty 100000000000000000000000 \
$EXTRA_OPTIONS
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
- 30304/udp
restart: always
environment:
- "EXTRA_OPTIONS=--http.api eth,net,web3,txpool"
- "EXTRA_OPTIONS=--http.api,engine,eth,net,web3,txpool"
- SYNCMODE
volumes:
ropsten: {}
1 change: 1 addition & 0 deletions jwtsecret
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
908a6ed51e01bfa2d5c7ec14e9825f9dd5097a1586cef0d17d91774fd1c21dff

0 comments on commit 5eb37c7

Please sign in to comment.