generated from Start9Labs/hello-world-startos
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.toml
96 lines (77 loc) · 2.11 KB
/
manifest.toml
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
build = ["make"]
id = "embassy-pages"
license = "MIT"
release-notes = """
* Update Nextcloud configuration option to include user \n
"""
support-site = "https://matrix.to/#/!lMnRwPWnyQvOfAoEnD:matrix.start9labs.com"
title = "Start9 Pages"
upstream-repo = "https://github.com/Start9Labs/start9-pages-startos"
version = "0.1.7.5"
wrapper-repo = "https://github.com/Start9Labs/start9-pages-startos"
[description]
long = "Start9 Pages is a simple web server that uses folders hosted on other internal services to serve Tor websites."
short = "Create Tor websites, hosted on your personal server."
[assets]
icon = "icon.png"
instructions = "instructions.md"
license = "LICENSE"
[main]
args = []
entrypoint = "/usr/local/bin/docker_entrypoint.sh"
image = "main"
io-format = "yaml"
mounts = { main = "/root", filebrowser = "/mnt/filebrowser", nextcloud = "/mnt/nextcloud" }
type = "docker"
["health-checks"."web-ui"]
name = "Web UI"
success-message = "Ready to be visited in a web browser"
type = "script"
[config.get]
type = "script"
[config.set]
type = "script"
[properties]
type = "script"
[dependencies.filebrowser]
description = "Used to upload files to serve."
version = "^2.22.4"
[dependencies.filebrowser.requirement]
type = "opt-out"
how = "Can alternatively use Nextcloud for file storage"
[dependencies.nextcloud]
description = "Used to upload files to serve."
version = ">=25.0.2 <28.1"
[dependencies.nextcloud.requirement]
type = "opt-in"
how = "Can alternatively use File Browser for file storage"
[volumes.main]
type = "data"
[volumes.filebrowser]
package-id = "filebrowser"
path = "data"
readonly = true
type = "pointer"
volume-id = "main"
[volumes.nextcloud]
package-id = "nextcloud"
path = "/"
readonly = true
type = "pointer"
volume-id = "nextcloud"
[interfaces.main]
description = "Your Start9 Pages sites are displayed here when visited in a web browser."
name = "Web UI"
protocols = ["tcp", "http"]
tor-config = { port-mapping = { "80" = "80" } }
ui = true
[backup.create]
type = "script"
[backup.restore]
type = "script"
[migrations.from."*"]
type = "script"
args = [ "from" ]
[migrations.to."*"]
type = "script"
args = [ "to" ]