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
56 changes: 31 additions & 25 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,45 @@
{
"upstream": [
{
"repo": "ConsenSys/teku",
"version": "26.4.0",
"arg": "UPSTREAM_VERSION"
},
{
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2",
"arg": "STAKER_SCRIPTS_VERSION"
}
"architectures": [
"linux/amd64",
"linux/arm64"
],
"architectures": ["linux/amd64", "linux/arm64"],
"shortDescription": "Teku Beacon chain + validator",
"description": "Teku implementation of Beacon chain + validator",
"type": "service",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"categories": ["Blockchain", "ETH2.0"],
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodePackage-teku-generic.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-teku-generic/issues"
},
"license": "Apache-2.0",
"categories": [
"Blockchain",
"ETH2.0"
],
"chain": {
"driver": "ethereum-beacon-chain",
"serviceName": "beacon-chain",
"portNumber": 3500
"portNumber": 3500,
"serviceName": "beacon-chain"
},
"warnings": {
"onRemove": "Make sure your web3signer does not have this client selected or you will stop validating! (Packages > web3signer > config > client)"
"description": "Teku implementation of Beacon chain + validator",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodePackage-teku-generic.git"
},
"requirements": {
"minimumDappnodeVersion": "0.2.106"
},
"shortDescription": "Teku Beacon chain + validator",
"type": "service",
"upstream": [
{
"arg": "UPSTREAM_VERSION",
"repo": "ConsenSys/teku",
"version": "26.6.1"
},
{
"arg": "STAKER_SCRIPTS_VERSION",
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2"
}
],
"warnings": {
"onRemove": "Make sure your web3signer does not have this client selected or you will stop validating! (Packages > web3signer > config > client)"
}
}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build:
context: beacon-chain
args:
UPSTREAM_VERSION: 26.4.0
UPSTREAM_VERSION: 26.6.1
STAKER_SCRIPTS_VERSION: v0.1.2
DATA_DIR: /opt/teku/data
environment:
Expand Down