-
Notifications
You must be signed in to change notification settings - Fork 0
/
dogu.json
142 lines (142 loc) · 3.06 KB
/
dogu.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"Name": "official/redmine",
"Version": "5.1.4-1",
"DisplayName": "Redmine",
"Description": "Redmine is a flexible project management web application",
"Category": "Development Apps",
"Tags": [
"warp",
"pm",
"projectmanagement",
"issue",
"task"
],
"Logo": "https://cloudogu.com/images/dogus/redmine.png",
"Url": "http://www.redmine.org",
"Image": "registry.cloudogu.com/official/redmine",
"Dependencies": [
{
"type": "dogu",
"name": "postgresql"
},
{
"type": "dogu",
"name": "cas",
"Version": ">=7.0.5.1-6"
},
{
"type": "dogu",
"name": "nginx"
},
{
"type": "dogu",
"name": "postfix"
}
],
"Configuration": [
{
"Name": "logging/root",
"Description": "Set the root log level to one of ERROR, WARN, INFO, DEBUG.",
"Optional": true,
"Default": "INFO",
"Validation": {
"Type": "ONE_OF",
"Values": [
"WARN",
"DEBUG",
"INFO",
"ERROR"
]
}
},
{
"Name": "container_config/memory_limit",
"Description": "Limits the container's memory usage. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).",
"Optional": true,
"Validation": {
"Type": "BINARY_MEASUREMENT"
}
},
{
"Name": "container_config/swap_limit",
"Description": "Limits the container's swap memory usage. Use zero or a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte). 0 will disable swapping.",
"Optional": true,
"Validation": {
"Type": "BINARY_MEASUREMENT"
}
},
{
"Name": "etcd_redmine_config",
"Description": "Applies default configuration to redmine.",
"Optional": true
}
],
"Volumes": [
{
"Name": "files",
"Path": "/usr/share/webapps/redmine/files",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": true
},
{
"Name": "plugins",
"Path": "/var/tmp/redmine/plugins",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": true
},
{
"Name": "logs",
"Path": "/usr/share/webapps/redmine/log",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": false
},
{
"Name": "localConfig",
"Path": "/var/ces/config",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": true
}
],
"ServiceAccounts": [
{
"Type": "postgresql"
},
{
"Type": "cas",
"Params": [
"cas"
]
}
],
"HealthChecks": [
{
"Type": "tcp",
"Port": 3000
},
{
"Type": "state"
}
],
"ExposedCommands": [
{
"Name": "post-upgrade",
"Command": "/post-upgrade.sh"
},
{
"Name": "upgrade-notification",
"Command": "/upgrade-notification.sh"
},
{
"Name": "pre-upgrade",
"Command": "/pre-upgrade.sh"
},
{
"Name": "delete-plugin",
"Command": "/delete-plugin.sh"
}
]
}