-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.yaml
120 lines (120 loc) · 2.91 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
id: sparrow-webtop
title: "Sparrow"
version: 2.0.0.1
release-notes: |
* Add 'Automatically reconnect' option. Enable this to reconnect to the desktop when the connection is lost or the browser tab has been idle for too long.
* fix a minor issue when browser tab becomes idle (Cannot read properties of undefined (reading 'lastActiveAt'))
license: GPLv3
wrapper-repo: "https://github.com/remcoros/sparrow-webtop-startos"
upstream-repo: "https://github.com/sparrowwallet/sparrow"
support-site: "https://github.com/sparrowwallet/sparrow/issues"
marketing-site: "https://sparrowwallet.com/"
donation-url: "https://sparrowwallet.com/donate/"
build: ["make"]
description:
short: Sparrow - Desktop Wallet In Your Browser
long: |
Sparrow on Webtop is a stripped down version of 'Webtop' (a Linux Desktop Environment) running the Sparrow wallet.
This allows users to access a simple Linux desktop with Sparrow pre-installed directly from their web browser.
assets:
license: LICENSE
icon: icon.png
instructions: instructions.md
main:
type: docker
image: main
entrypoint: "docker_entrypoint.sh"
args: []
mounts:
main: /root/data
userdir: /config
gpu-acceleration: false
hardware-requirements:
arch:
- x86_64
- aarch64
health-checks:
web-ui:
name: Sparrow User Interface
success-message: Ready to be visited in a web browser
type: script
config:
get:
type: script
set:
type: script
properties:
type: script
volumes:
main:
type: data
userdir:
type: data
compat:
type: assets
interfaces:
main:
name: User Interface
description: Web user interface to display your Sparrow on Webtop Desktop
tor-config:
port-mapping:
80: "3000"
lan-config:
443:
ssl: true
internal: 3000
ui: true
protocols:
- tcp
- http
dependencies:
bitcoind:
version: ">=0.21.1.2 <28.0.0"
requirement:
type: "opt-in"
how: "Select Bitcoin Core as the server"
description: Used to connect Sparrow to a private Bitcoin Core server
electrs:
version: ">=0.9.6 <0.12.0"
requirement:
type: "opt-out"
how: "Select Bitcoin Core or Public (not recommended) as the server"
description: Used to connect Sparrow to a private electrum server
backup:
create:
type: docker
image: compat
system: true
entrypoint: /mnt/assets/backup.sh
args:
- create
- /root/data
- /config
mounts:
BACKUP: /mnt/backup
compat: /mnt/assets
main: /root/data
userdir: /config
restore:
type: docker
image: compat
system: true
entrypoint: /mnt/assets/backup.sh
args:
- restore
- /root/data
- /config
mounts:
BACKUP: /mnt/backup
compat: /mnt/assets
main: /root/data
userdir: /config
migrations:
from:
"*":
type: script
args: ["from"]
to:
"*":
type: script
args: ["to"]