generated from Start9Labs/hello-world-startos
-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.yaml
199 lines (199 loc) · 4.96 KB
/
manifest.yaml
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
id: mempool
title: Mempool
version: 3.0.1
release-notes: |
* Updates upstream, which includes a fix to save CPU on lower powered hardware
license: AGPL
wrapper-repo: "https://github.com/Start9Labs/mempool-wrapper"
upstream-repo: "https://github.com/mempool/mempool"
support-site: "https://mempool.space/docs/api/rest"
marketing-site: "https://mempool.space/"
donation-url: "https://mempool.space/sponsor"
build: ["make"]
description:
short: "Explore the full Bitcoin ecosystem"
long: "Be your own explorer.\n\nRun your own instance of The Mempool Open Source Project and trust no one—use your own node to beautifully visualize data about the Bitcoin network, transactions, blockchain, mempool, and more.\n\nThis product includes GeoLite2 data created by MaxMind, available from https://www.maxmind.com."
assets:
license: LICENSE
icon: icon.png
instructions: instructions.md
main:
type: docker
image: main
entrypoint: docker_entrypoint.sh
args: []
mounts:
main: /root
cache: /backend/cache
db: /var/lib/mysql
lnd: /mnt/lnd
c-lightning: "/mnt/c-lightning"
health-checks:
web-ui:
name: Web Interface
success-message: The Mempool UI is ready to visit in a web browser
type: script
api:
name: API
success-message: The Mempool API is reachable and responsive.
type: docker
image: main
system: false
entrypoint: health-check.sh
inject: true
args: ["api"]
mounts: {}
io-format: json
synced:
name: Transaction Indexer
success-message: Bitcoin is fully indexed. You may now launch Mempool.
type: docker
image: main
system: false
entrypoint: check-synced.sh
inject: true
args: ["sync"]
mounts: {}
io-format: json
config:
get:
type: script
set:
type: script
dependencies:
bitcoind:
version: ">=0.21.1.2 <29.0.0"
requirement:
type: "required"
description: Used to subscribe to new block events from a full archival node
config:
check:
type: script
auto-configure:
type: script
electrs:
version: ">=0.9.6 <0.12.0"
requirement:
type: "opt-out"
how: Set Enable Electrs to Disabled in the config
description: Used to provide an index for address lookups
lnd:
version: ">=0.14.3 <0.20.0"
description: Used to communicate with the Lightning Network.
requirement:
type: "opt-in"
how: Use the LND instance by default
config: ~
c-lightning:
version: ">=0.10.1 <26.0.0"
description: Used to communicate with the Lightning Network.
requirement:
type: "opt-in"
how: Can opt to use the CLN instance instead of LND
config: ~
volumes:
main:
type: data
cache:
type: data
db:
type: data
lnd:
type: pointer
package-id: lnd
volume-id: main
path: "/public"
readonly: true
c-lightning:
type: pointer
package-id: c-lightning
volume-id: main
path: /shared
readonly: true
alerts:
start: |
READ CAREFULLY! When first running Mempool, previous block fee estimates will show as zero values until the service is able to catch up. This is expected behaviour.
ALSO: Lookups may be slow or time out altogether while the service is still warming up, or if there are too many other things running on your system. If address lookups aren't working, try restarting electrs and try the lookup again.
interfaces:
main:
name: Mempool Interface
description: Specifies the mempool interface to listen on for HTTP connections.
tor-config:
port-mapping:
80: "8080"
lan-config:
443:
ssl: true
internal: 8080
ui: true
protocols:
- tcp
- http
backup:
create:
type: docker
image: compat
system: true
entrypoint: compat
args:
- duplicity
- create
- /mnt/backup
- /root/data
mounts:
BACKUP: /mnt/backup
main: /root/data
cache: /backend/cache
db: /var/lib/mysql
io-format: yaml
restore:
type: docker
image: compat
system: true
entrypoint: compat
args:
- duplicity
- restore
- /mnt/backup
- /root/data
mounts:
BACKUP: /mnt/backup
main: /root/data
cache: /backend/cache
db: /var/lib/mysql
io-format: yaml
migrations:
from:
"<2.3.1.4":
type: script
">=2.3.1.4 <2.5.0":
type: script
">=2.5.0 <=3.0.0.3":
type: docker
image: main
system: false
entrypoint: /usr/local/bin/migrations/gt_2_5_0_lt_3_0_0_2.sh
args: ["from"]
io-format: json
mounts:
main: /root
inject: false
">3.0.0.3":
type: script
to:
"<2.3.1.4":
type: script
">=2.3.1.4 <2.5.0":
type: script
">=2.5.0 <=3.0.0.3":
type: docker
image: main
system: false
entrypoint: /usr/local/bin/migrations/gt_2_5_0_lt_3_0_0_2.sh
args: ["to"]
io-format: json
mounts:
main: /root
inject: false
">3.0.0.3":
type: script