forked from chrisguida/gitea-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.yaml
107 lines (107 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
107
id: gitea
title: "Gitea"
version: 1.22.6
release-notes: |
* Upstream code update
* Update bundling process to use Deno emit module
* Full list of upstream changes available [here](https://github.com/go-gitea/gitea/compare/v1.22.0...v1.22.6)
license: MIT
wrapper-repo: "https://github.com/Start9Labs/gitea-startos"
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: LICENSE
icon: icon.png
instructions: instructions.md
main:
type: docker
image: main
entrypoint: "/usr/local/bin/docker_entrypoint.sh"
mounts:
main: /data
hardware-requirements:
arch:
- x86_64
- aarch64
health-checks:
web:
name: Web & Git HTTP Tor Interfaces
success-message: Gitea is ready to be visited in a web browser and git can be used with SSH over TOR.
type: script
user-signups-off:
name: User Signups Off
type: script
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"]