Skip to content
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
29 changes: 22 additions & 7 deletions dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,27 @@
"upstream": [
{
"repo": "AztecProtocol/aztec-packages",
"version": "v2.0.4",
"version": "v2.1.2",
"arg": "UPSTREAM_VERSION"
}
],
"description": "Aztec is a privacy first L2 on Ethereum",
"type": "service",
"architectures": ["linux/amd64"],
"architectures": [
"linux/amd64",
"linux/arm64"
],
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"categories": ["Blockchain", "ETH2.0"],
"keywords": ["aztec", "validator", "rollup", "privacy"],
"categories": [
"Blockchain",
"ETH2.0"
],
"keywords": [
"aztec",
"validator",
"rollup",
"privacy"
],
"links": {
"homepage": "https://aztec.network",
"readme": "https://github.com/DAppNode/DAppNodePackage-aztec-generic#readme",
Expand All @@ -27,8 +38,12 @@
},
"globalEnvs": [
{
"envs": ["PUBLIC_IP"],
"services": ["sequencer"]
"envs": [
"PUBLIC_IP"
],
"services": [
"sequencer"
]
}
]
}
}
3 changes: 1 addition & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ services:
build:
context: sequencer
args:
UPSTREAM_VERSION: v2.0.4
UPSTREAM_VERSION: v2.1.2
DATA_DIRECTORY: /data
volumes:
- sequencer-data:/data
environment:
COINBASE: ""
VALIDATOR_PRIVATE_KEYS: ""
BLOB_SINK_URL: ""
LOG_LEVEL: info
restart: unless-stopped
volumes:
Expand Down