generated from Start9Labs/hello-world-startos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.yaml
85 lines (84 loc) · 1.63 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
# Example written in yaml (toml and json are also acceptable)
id: pairdrop
title: "PairDrop"
version: 1.0.0.1
release-notes: "Revamped for EmbassyOS 0.3.3"
license: MIT
wrapper-repo: "https://github.com/CasaVinteUm/pairdrop-startos"
upstream-repo: "https://github.com/schlagmichdoch/pairdrop"
support-site: "https://github.com/schlagmichdoch/pairdrop"
marketing-site: "https://pairdrop.net/"
build: ["make"]
description:
short: PairDrop
long: |
Local file sharing in your browser. Inspired by Apple's AirDrop. Fork of Snapdrop.
assets:
license: LICENSE
icon: icon.png
instructions: instructions.md
main:
type: docker
image: main
entrypoint: npm
args: ["run", "start:prod"]
mounts:
main: /root
health-checks: {}
config: ~
properties: ~
volumes:
main:
type: data
interfaces:
main:
name: User Interface
description: PairDrop User Interface
tor-config:
port-mapping:
80: "3000"
lan-config:
443:
ssl: true
internal: 3000
ui: true
protocols:
- tcp
- http
dependencies: {}
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"]