-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6c1e7c
commit 03c61be
Showing
12 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
version: "3.5" | ||
services: | ||
geth: | ||
# TODO: image should be defined by SDK in build action (alredy done in theory) | ||
# TODO: image should be defined by SDK in build action (already done in theory) | ||
build: | ||
context: geth | ||
args: | ||
UPSTREAM_VERSION: v1.13.14 | ||
# TODO: SDK should add here NETWORK (passed as flag to build action) | ||
volumes: | ||
- "geth:/root/.ethereum" | ||
environment: | ||
- EXTRA_FLAGS=--http.api eth,engine,net,web3,txpool | ||
- SYNCMODE=snap | ||
restart: unless-stopped | ||
# TODO: Add ports here from package_variants/NETWORK/dappnode_package.json (ports array) | ||
volumes: | ||
geth: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,5 @@ | |
"serviceName": "geth", | ||
"port": 8546 | ||
} | ||
], | ||
"ports": ["30803:30803/tcp", "30803:30803/udp"] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: "3.5" | ||
services: | ||
geth: | ||
environment: | ||
NETWORK: "goerli" | ||
ports: | ||
- "30803:30803/tcp" | ||
- "30803:30803/udp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,5 @@ | |
"serviceName": "geth", | ||
"port": 8546 | ||
} | ||
], | ||
"ports": ["31403:31403/tcp", "31403:31403/udp"] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: "3.5" | ||
services: | ||
geth: | ||
environment: | ||
NETWORK: "holesky" | ||
ports: | ||
- "31403:31403/tcp" | ||
- "31403:31403/udp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,5 @@ | |
"serviceName": "geth", | ||
"port": 8546 | ||
} | ||
], | ||
"ports": ["33141:33141/tcp", "33141:33141/udp"] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: "3.5" | ||
services: | ||
geth: | ||
environment: | ||
NETWORK: "lukso" | ||
ports: | ||
- "33141:33141/tcp" | ||
- "33141:33141/udp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,5 @@ | |
"serviceName": "geth", | ||
"port": 8546 | ||
} | ||
], | ||
"ports": ["30403:30403/tcp", "30403:30403/udp"] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: "3.5" | ||
services: | ||
geth: | ||
environment: | ||
NETWORK: "mainnet" | ||
ports: | ||
- "30403:30403/tcp" | ||
- "30403:30403/udp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,5 @@ | |
"fromSubdomain": "sepolia-geth", | ||
"port": 8545 | ||
} | ||
], | ||
"ports": ["35415:35415/tcp", "35415:35415/udp"] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: "3.5" | ||
services: | ||
geth: | ||
environment: | ||
NETWORK: "sepolia" | ||
ports: | ||
- "35415:35415/tcp" | ||
- "35415:35415/udp" |