File tree Expand file tree Collapse file tree 2 files changed +44
-2
lines changed Expand file tree Collapse file tree 2 files changed +44
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : dolos
2
+ version : 0.10.0
3
+ description : Dolos is a Cardano data node
4
+ dependencies :
5
+ - cardano-config >= 20240515
6
+ installSteps :
7
+ - file :
8
+ filename : daemon.toml
9
+ source : files/daemon.toml.gotmpl
10
+ - docker :
11
+ containerName : dolos
12
+ image : ghcr.io/txpipe/dolos:v0.10.0
13
+ command :
14
+ - dolos
15
+ - daemon
16
+ binds :
17
+ - ' {{ .Paths.DataDir }}:/etc/dolos'
18
+ - ' {{ .Paths.DataDir }}/data:/data'
19
+ - ' {{ .Paths.ContextDir }}/config/{{ .Context.Network }}:/config'
20
+ - ' {{ .Paths.ContextDir }}/dolos-ipc:/ipc'
21
+ ports :
22
+ - " 30013"
23
+ - " 50051"
24
+ pullOnly : false
25
+ outputs :
26
+ - name : grpc
27
+ description : Dolos gRPC service
28
+ value : ' http://localhost:{{ index (index .Ports "dolos") "50051" }}'
29
+ - name : relay
30
+ description : Dolos Ouroboros Node-to-Node service
31
+ value : ' localhost:{{ index (index .Ports "dolos") "30013" }}'
32
+ - name : socket-path
33
+ description : Path to the Dolos Ouroboros Node-to-Client UNIX socket
34
+ value : ' {{ .Paths.ContextDir }}/dolos-ipc/dolos.socket'
35
+ tags :
36
+ - docker
37
+ - linux
38
+ - darwin
39
+ - amd64
40
+ - arm64
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ listen_address = "[::]:30013"
17
17
magic = {{ .Context.NetworkMagic }}
18
18
19
19
[sync]
20
- pull_batch_size = 200
20
+ pull_batch_size = 100
21
21
22
22
[submit]
23
- prune_height = 10000
23
+ prune_height = 200
24
24
# validate_phase_1 = false
25
25
# validate_phase_2 = false
26
26
@@ -54,3 +54,5 @@ magic = {{ .Context.NetworkMagic }}
54
54
55
55
[logging]
56
56
max_level = "debug"
57
+ include_pallas = false
58
+ include_grpc = false
You can’t perform that action at this time.
0 commit comments