Create rainloop.json (#38)
This commit is contained in:
parent
926e2387dc
commit
fba47e9cd1
|
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
"captainVersion": "1",
|
||||||
|
"documentation": "Taken from https://hub.docker.com/r/hardware/rainloop",
|
||||||
|
"dockerCompose": {
|
||||||
|
"version": "2",
|
||||||
|
"services": {
|
||||||
|
"$$cap_appname": {
|
||||||
|
"image": "hardware/rainloop:$$cap_rainloop_version",
|
||||||
|
"containerHttpPort": "8888",
|
||||||
|
"restart": "always",
|
||||||
|
"volumes": [
|
||||||
|
"$$cap_appname-data:/rainloop/data"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"volumes": {
|
||||||
|
"$$cap_appname-data": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"instructions": {
|
||||||
|
"start": "Rainloop is a simple, modern & fast web-based email client. \n\n For initial configuration, see https://www.rainloop.net/docs/configuration/",
|
||||||
|
"end": "Rainloop is deployed and available as $$cap_appname. \n\n It will take about a minute for Rainloop to be ready. Before that, you might see 502 error page."
|
||||||
|
},
|
||||||
|
"variables": [
|
||||||
|
{
|
||||||
|
"id": "$$cap_rainloop_version",
|
||||||
|
"label": "Rainloop Version",
|
||||||
|
"description": "Checkout their docker page for the valid tags https://hub.docker.com/r/hardware/rainloop/tags",
|
||||||
|
"defaultValue": "latest",
|
||||||
|
"validRegex": "/^([^\\s^\\/])+$/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue