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
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ FROM europe-west3-docker.pkg.dev/hoprassociation/docker-images/hoprd:${UPSTREAM_
ENV DAPPNODE=true

ADD hoprd.cfg.yaml /app/hoprd/conf/hoprd.cfg.yaml
ADD entrypoint.sh /bin/entrypoint.sh

RUN chmod +rx /bin/entrypoint.sh

ENTRYPOINT ["/bin/entrypoint.sh"]
4 changes: 2 additions & 2 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hopr-testnet.public.dappnode.eth",
"version": "1.0.0",
"version": "1.0.19",
"upstreamVersion": "kaunas",
"description": "The HOPR protocol ensures everyone has control of their privacy, data, and identity. By running a HOPR Node, you can obtain HOPR tokens by relaying data and connect to the HOPR Network.",
"type": "service",
Expand Down Expand Up @@ -56,7 +56,7 @@
{
"name": "GnosisVPN Session port",
"description": "Port used for Gnosis VPN",
"port": 1422,
"port": 1522,
"serviceName": "node"
},
{
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
build:
context: .
args:
UPSTREAM_VERSION: latest
UPSTREAM_VERSION: 3.0.0@sha256:fa9764f5e9927094960f63dfb68dbf6cbc237210559a890f1effa29da6e92ecd
ports:
- "3101:3101/tcp"
- 9191:9191/tcp
Expand All @@ -26,8 +26,8 @@ services:
- 9198:9198/udp
- 9199:9199/tcp
- 9199:9199/udp
- "10000-10100:10000-10100/tcp"
- "10000-10100:10000-10100/udp"
- "20000-20100:20000-20100/tcp"
- "20000-20100:20000-20100/udp"
volumes:
- "data:/app/hoprd/data"
- "conf:/app/hoprd/conf"
Expand All @@ -41,7 +41,7 @@ services:
HOPRD_MODULE_ADDRESS: 0x
HOPRD_PASSWORD: ""
HOPRD_PROVIDER: ""
HOPRD_SESSION_PORT_RANGE: "10000:10100"
HOPRD_SESSION_PORT_RANGE: "20000:20100"
HOPRD_MAX_BLOCK_RANGE: 100
HOPRD_MAX_RPC_REQUESTS_PER_SEC: 10
HOPRD_NAT: "true"
Expand All @@ -58,7 +58,7 @@ services:
build:
context: ./hopr-admin
image: >-
europe-west3-docker.pkg.dev/hoprassociation/docker-images/hopr-admin:kaunas
europe-west3-docker.pkg.dev/hoprassociation/docker-images/hopr-admin:3.0.3
ports:
- "3100:4677"
restart: unless-stopped
Expand Down
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

env ${ADDITIONAL_ENVIRONMENT_VARS} /bin/docker-entrypoint.sh ${ADDITIONAL_CMDLINE_ARGS}
7 changes: 0 additions & 7 deletions hoprd.cfg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,11 @@ hopr:
on_fail_continue: true
allow_recursive: true
strategies:
- !Aggregating
aggregation_threshold: 250
unrealized_balance_ratio: 0.9
aggregate_on_channel_close: true
- !AutoRedeeming
redeem_only_aggregated: true
minimum_redeem_ticket_value: "0.25 wxHOPR"
- !ClosureFinalizer
max_closure_overdue: 300
protocol:
ticket_aggregation:
timeout: 15
chain:
announce: true
network: rotsee
Expand Down
Loading