This repository was archived by the owner on Jan 20, 2023. It is now read-only.
File tree 5 files changed +57
-24
lines changed
compose-examples/lodestar-only
5 files changed +57
-24
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ TEKU_DOCKER_TAG=21.8.1
9
9
NIMBUS_DOCKER_TAG = v1.4.2-33
10
10
VOUCH_DOCKER_TAG = 1.0.4
11
11
DIRK_DOCKER_TAG = 1.0.2
12
- LODESTAR_DOCKER_TAG = v0.27 .0-23
12
+ LODESTAR_DOCKER_TAG = v0.31 .0-29
13
13
14
14
GRAFANA_DOCKER_TAG = 7.3.10
15
15
GRAFANA_IMAGE_RENDERER_TAG = 2.0.0
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ services:
43
43
depends_on :
44
44
- geth
45
45
- stereum-init
46
- command : beacon --configFile /opt/app/beacon.json --paramsFile /opt/app/beacon. yaml --network pyrmont --rootDir /opt/app/beacon
46
+ command : beacon --rcConfig /opt/app/beacon.yaml
47
47
ports :
48
48
- 30607:30607/tcp
49
49
- 9000:9000/udp
@@ -54,7 +54,6 @@ services:
54
54
stereum-admin :
55
55
volumes :
56
56
- ./config/lodestar/beacon.yaml:/opt/app/beacon.yaml:ro
57
- - ./config/lodestar/beacon.json:/opt/app/beacon.json:ro
58
57
- ./data/lodestar/beacon:/opt/app/beacon
59
58
<< : *logging
60
59
@@ -66,7 +65,7 @@ services:
66
65
depends_on :
67
66
- beacon
68
67
- stereum-init
69
- command : validator --paramsFile /opt/app/validator.yaml
68
+ command : validator --rcConfig /opt/app/validator.yaml
70
69
volumes :
71
70
- ./config/lodestar/validator.yaml:/opt/app/validator.yaml:ro
72
71
- ./data/lodestar/validator/keystores:/opt/app/keystores
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # #######################################
2
+ # #
3
+ # # Read up on parameters on
4
+ # # https://chainsafe.github.io/lodestar/
5
+ # #
6
+ # #######################################
7
+
8
+ # ########
9
+ # Network
10
+ network : prater
11
+
12
+ # #########
13
+ # Database
14
+ rootDir : /opt/app/beacon
15
+
16
+ # #############################
17
+ # Connection to geth container
18
+ eth1.providerUrls : http://geth:8545
19
+
20
+ # ######################
21
+ # Beacon rest api
22
+ api.rest.enabled : true
23
+ api.rest.port : 9596
24
+ api.rest.host : " 0.0.0.0"
25
+
26
+ # ########
27
+ # Metrics
28
+ metrics.enabled : true
29
+ metrics.serverPort : 8008
30
+ metrics.listenAddr : " 0.0.0.0"
1
31
2
32
# EOF
Original file line number Diff line number Diff line change 1
- network : pyrmont
1
+ # #######################################
2
+ # #
3
+ # # Read up on parameters on
4
+ # # https://chainsafe.github.io/lodestar/
5
+ # #
6
+ # #######################################
7
+
8
+ # ########
9
+ # Network
10
+ network : prater
11
+
12
+ # #########
13
+ # Database
14
+ rootDir : /opt/app/beacon
15
+
16
+ # #############
17
+ # Connectivity
2
18
server : http://beacon:9596
19
+
20
+ # ##############################################
21
+ # Validator database, accounts & key management
22
+ validatorsDbDir : /opt/app/validator-db
3
23
keystoresDir : /opt/app/keystores
4
24
secretsDir : /opt/app/secrets
5
- validatorsDbDir : /opt/app/validator-db
6
- rootDir : /opt/app/beacon
25
+
26
+ # #########
27
+ # Graffiti
7
28
graffiti : stereum.net
8
29
9
30
# EOF
You can’t perform that action at this time.
0 commit comments