generated from Start9Labs/hello-world-startos
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.yaml
114 lines (114 loc) · 2.33 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
id: gitea
title: "Gitea"
version: 1.16.9
release-notes: |
Initial release of Gitea for EmbassyOS
license: MIT
wrapper-repo: "https://github.com/chrisguida/gitea-wrapper"
upstream-repo: "https://github.com/go-gitea/gitea"
support-site: "https://docs.gitea.io/en-us/"
marketing-site: "https://gitea.io/en-us/"
build: ["make"]
description:
short: A painless self-hosted Git service.
long: |
Gitea is a community managed lightweight code hosting solution written in Go. It is published under the MIT license.
assets:
license: gitea/LICENSE
icon: icon.png
instructions: instructions.md
docker-images: image.tar
main:
type: docker
image: main
entrypoint: "/usr/local/bin/docker_entrypoint.sh"
mounts:
main: /data
health-checks:
web:
name: HTTP Interface (Web & Git HTTP over Tor)
success-message: Gitea is ready to be visited in your browser, and your git repos can now be interacted with.
type: docker
image: main
entrypoint: check-web.sh
args: ["web"]
io-format: json
inject: true
user-signups-off:
name: User Signups Off
type: docker
image: main
system: false
entrypoint: check-user-signups-off.sh
args: []
mounts: {}
io-format: yaml
inject: true
config:
get:
type: script
set:
type: script
properties:
type: script
dependencies: {}
volumes:
main:
type: data
interfaces:
main:
name: Web UI / Git HTTPS/SSH
description: 'Port 80: Browser Interface and HTTP Git Interface / Port 22: Git SSH Interface'
tor-config:
port-mapping:
80: "3000"
22: "22"
lan-config:
443:
ssl: true
internal: 3000
ui: true
protocols:
- tcp
- http
- ssh
- git
alerts: {}
backup:
create:
type: docker
image: compat
system: true
entrypoint: compat
args:
- duplicity
- create
- /mnt/backup
- /root/data
mounts:
BACKUP: /mnt/backup
main: /root/data
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
io-format: yaml
migrations:
from:
"*":
type: script
args: ["from"]
to:
"*":
type: script
args: ["to"]