-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.yaml
106 lines (106 loc) · 2.24 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
id: nostr-wallet-connect
title: Nostr Wallet Connect
version: 0.4.2.1
release-notes: Implemented LND 0.18 compatibility
license: Apache-2.0
wrapper-repo: "https://github.com/horologger/nostr-wallet-connect-startos"
upstream-repo: "https://github.com/getAlby/nostr-wallet-connect"
support-site: "https://github.com/getAlby/nostr-wallet-connect/issues"
marketing-site: "https://nwc.dev/"
build: ["make"]
description:
short: An open protocol for connecting lightning wallets to apps
long: |
NWC allows for sustained interaction between Bitcoin lightning wallets and apps. Once an app connection is created, the app can request payments through a Nostr relay.
assets:
license: LICENSE
icon: nwc-logo.png
instructions: instructions.md
main:
type: docker
image: main
entrypoint: "docker_entrypoint.sh"
args: []
mounts:
main: /data
lnd: /mnt/lnd
health-checks:
web-ui:
name: Web UI
success-message: Nostr Wallet Connect UI is ready
type: script
config:
get:
type: script
set:
type: script
properties: ~
environment: ~
volumes:
main:
type: data
lnd:
type: pointer
package-id: lnd
volume-id: main
path: /public
readonly: true
interfaces:
main:
name: User Interface
description: Create connections with Nostr Wallet Connect
tor-config:
port-mapping:
80: "8080"
lan-config:
443:
ssl: true
internal: 8080
ui: true
protocols:
- tcp
- http
dependencies:
lnd:
version: ">=0.16.0 <0.19.0"
description: Nostr Wallet Connect works with your LND
requirement:
type: "required"
how: Use the LND instance by default
config: ~
backup:
create:
type: docker
image: compat
system: true
entrypoint: compat
args:
- duplicity
- create
- /mnt/backup
- /root/data
mounts:
BACKUP: "/mnt/backup"
main: "/root/data"
restore:
type: docker
image: compat
system: true
entrypoint: compat
args:
- duplicity
- restore
- /mnt/backup
- /root/data
mounts:
BACKUP: "/mnt/backup"
main: "/root/data"
migrations:
from:
"*":
type: script
args: ["from"]
to:
"*":
type: script
args: ["to"]