-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.12 KB
/
manifest.json
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
{
"packaging_format": 1,
"name": "Docker Registry",
"id": "docker-registry",
"description": {
"en": "Docker registry for yunohost"
},
"url": "https://github.com/docker/distribution/",
"license": "apache-2.0",
"version": "2.0",
"maintainer": {
"name": "plopoyop",
"email": "[email protected]",
"url": "https://github.com/plopoyop"
},
"multi_instance": true,
"services": [
"nginx",
"docker"
],
"requirements": {
"yunohost": ">> 2.5.6"
},
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for your Docker Registry"
},
"example": "domain.org"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public site ?",
"fr": "Est-ce un site public ?"
},
"default": true
}
]
}
}