Skip to content

Commit 279b8ea

Browse files
Rename folders (#6)
1 parent 90180b2 commit 279b8ea

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ FROM europe-west3-docker.pkg.dev/hoprassociation/docker-images/hoprd:${UPSTREAM_
44
# not used at the moment, but might be useful in the future
55
ENV DAPPNODE=true
66

7-
ADD hoprd.cfg.yaml /app/hoprd.cfg.yaml
7+
ADD hoprd.cfg.yaml /app/hoprd/conf/hoprd.cfg.yaml

dappnode_package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,12 @@
105105
"license": "GLP-3.0",
106106
"backup": [
107107
{
108-
"name": "db",
109-
"path": "/app/hoprd-db/db"
110-
},
111-
{
112-
"name": "identity",
113-
"path": "/app/hoprd-db/.hopr-identity"
108+
"name": "data",
109+
"path": "/app/hoprd/data"
114110
},
115111
{
116112
"name": "config",
117-
"path": "/app/hoprd.cfg.yaml"
113+
"path": "/app/hoprd/conf"
118114
}
119115
],
120116
"globalEnvs": [

docker-compose.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ services:
2929
- "10000-10100:10000-10100/tcp"
3030
- "10000-10100:10000-10100/udp"
3131
volumes:
32-
- "db:/app/hoprd-db"
32+
- "data:/app/hoprd/data"
33+
- "conf:/app/hoprd/conf"
3334
security_opt:
3435
- "seccomp:unconfined"
3536
environment:
3637
RUST_LOG: info
37-
HOPRD_CONFIGURATION_FILE_PATH: /app/hoprd.cfg.yaml
38+
HOPRD_CONFIGURATION_FILE_PATH: /app/hoprd/conf/hoprd.cfg.yaml
3839
HOPRD_HOST: "127.0.0.1:9191"
3940
HOPRD_SAFE_ADDRESS: 0x
4041
HOPRD_MODULE_ADDRESS: 0x
@@ -56,7 +57,7 @@ services:
5657
build:
5758
context: ./hopr-admin
5859
image: >-
59-
europe-west3-docker.pkg.dev/hoprassociation/docker-images/hopr-admin:2.1.6.1
60+
europe-west3-docker.pkg.dev/hoprassociation/docker-images/hopr-admin:2.1.14
6061
ports:
6162
- "3100:4677"
6263
restart: unless-stopped
@@ -65,4 +66,5 @@ services:
6566
limits:
6667
memory: 256M
6768
volumes:
68-
db: {}
69+
data: {}
70+
conf: {}

hoprd.cfg.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
hopr:
33
db:
4-
data: /app/hoprd-db/db
4+
data: /app/hoprd/data
55
initialize: true
66
force_initialize: false
77
strategy:
@@ -39,12 +39,12 @@ hopr:
3939
check_unrealized_balance: true
4040
network: rotsee
4141
safe_module:
42-
safe_transaction_service_provider: https://safe-transaction.prod.hoprtech.net/
42+
safe_transaction_service_provider: https://safe-transaction.prod.hoprnet.link/
4343
transport:
4444
announce_local_addresses: false
4545
prefer_local_addresses: false
4646
identity:
47-
file: /app/hoprd-db/.hopr-identity
47+
file: /app/hoprd/conf/hopr.id
4848
api:
4949
enable: true
5050
host:

0 commit comments

Comments
 (0)