-
Notifications
You must be signed in to change notification settings - Fork 10
/
docker-compose.yml
41 lines (41 loc) · 1.07 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: '3'
services:
compass:
image: "iotacafe/compass:coordinator-554440c"
network_mode: host
depends_on:
- 'iri'
volumes:
- ./state:/state
- ./layers:/layers
command: coordinator_deploy.jar
-bootstrap
-broadcast
-layers /layers
-sigMode CURLP27
-powMode CURLP81
-mwm 9
-security 1
-seed MYSEEDHEREPLEASEREPLACEMEIMMEDIATELYWITHSOMETHINGSECURE99999999999999999999999999
-tick 30000
-host http://localhost:14265
-statePath /state/statefile
iri:
network_mode: host
image: "iotaledger/iri:latest"
ports:
- "14265:14265"
volumes:
- ./snapshot.txt:/snapshot.txt
- ./db:/iri/data
command: >-
--testnet
--remote
--testnet-coordinator ZRMNUUBQHVRFRFBOQZYGAUBSTJSHDVIPXHUDA9VAXFTDSGGRILPVMYLVOLVCIEHLFMQKUOHUIUWILCXGD
--testnet-coordinator-security-level 1
--testnet-coordinator-signature-mode CURLP27
--mwm 9
--milestone-start 0
--milestone-keys 20
--snapshot /snapshot.txt
--max-depth 1000