forked from OneGramTech/onegram-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.testnet.yml
86 lines (79 loc) · 2.32 KB
/
docker-compose.testnet.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
version: '3'
#
# This is a Compose file for OneGram Testnet2
#
# seed-node-1 (88.99.33.147)
# seed-node-2 (195.201.132.239)
# rpc-1 (88.99.124.68)
# rpc-2 (195.201.133.26)
# validator-1 (195.201.127.199)
services:
seed-node-1:
hostname: ogc-seed-1
image: frankhorv/onegram-testnet
command: onegram_fullnode --seed-nodes "[\"195.201.132.239:18540\"]"
logging:
options:
max-size: "100k"
max-file: "3"
volumes:
- data:/var/onegram/data
ports:
- 18540:8540
restart: unless-stopped
seed-node-2:
hostname: ogc-seed-2
image: frankhorv/onegram-testnet
command: onegram_fullnode --seed-nodes "[\"88.99.33.147:18540\"]"
logging:
options:
max-size: "100k"
max-file: "3"
volumes:
- data:/var/onegram/data
ports:
- 18540:8540
restart: unless-stopped
rpc-1:
hostname: ogc-public-rpc-1
image: frankhorv/onegram-testnet
command: onegram_rpc --seed-node=195.201.133.26:18540 --replay-blockchain
logging:
options:
max-size: "100k"
max-file: "3"
volumes:
- data:/var/onegram/data
ports:
- 11011:11011
- 80:11011
restart: unless-stopped
rpc-2:
hostname: ogc-public-rpc-2
image: frankhorv/onegram-testnet
command: onegram_rpc --seed-node=88.99.124.68:18540 --replay-blockchain
logging:
options:
max-size: "100k"
max-file: "3"
volumes:
- data:/var/onegram/data
ports:
- 11011:11011
- 80:11011
restart: unless-stopped
validator-1:
hostname: ogc-validator-1
image: frankhorv/onegram-testnet
command: onegram_witness --seed-node=88.99.124.68:18540 --seed-node=195.201.133.26:18540 --enable-stale-production true --witness-id "\"1.6.1\"" --witness-id "\"1.6.2\"" --witness-id "\"1.6.3\"" --witness-id "\"1.6.4\"" --witness-id "\"1.6.5\"" --witness-id "\"1.6.6\"" --witness-id "\"1.6.7\"" --witness-id "\"1.6.8\"" --witness-id "\"1.6.9\"" --witness-id "\"1.6.10\"" --witness-id "\"1.6.11\"" --private-key "[\"OGC8CAY9y2yQvYN3djfVQWLyCAT2k4qcTCDdKzBnpTCiJJ6HKjW7U\",\"5KSi5P2RCESuKsvF56cq6mibY4HBVRsu7ycs9DRtr2L6VKFPRiK\"]"
logging:
options:
max-size: "100k"
max-file: "3"
volumes:
- data:/var/onegram/data
ports:
- 8540:8540
restart: unless-stopped
volumes:
data: