diff options
| author | Ben <[email protected]> | 2019-10-19 20:35:06 +0100 |
|---|---|---|
| committer | Kasra Bigdeli <[email protected]> | 2019-10-19 15:35:06 -0400 |
| commit | 1988c59950dd85f0f3fa7143b9e83ac6672c260c (patch) | |
| tree | 9ebdb5357ffe4d1069dab221c1c7fe396f3cab6f | |
| parent | 5a812fa4a7013616c58ba53b124263f533ca776a (diff) | |
| download | caprover-one-click-apps-1988c59950dd85f0f3fa7143b9e83ac6672c260c.tar.gz caprover-one-click-apps-1988c59950dd85f0f3fa7143b9e83ac6672c260c.zip | |
Add Countly analytics as a one-click app (#97)
* add countly
* allow version
* add version vars
* add more helpful message
| -rw-r--r-- | public/v2/apps/countly.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/public/v2/apps/countly.json b/public/v2/apps/countly.json new file mode 100644 index 0000000..6268aff --- /dev/null +++ b/public/v2/apps/countly.json @@ -0,0 +1,29 @@ +{ + "captainVersion": "2", + "documentation": "Taken from https://hub.docker.com/r/countly/countly-server", + "dockerCompose": { + "version": "3.3", + "services": { + "$$cap_appname": { + "image": "countly/countly-server:$$cap_countly_version", + "volumes": [ + "$$cap_appname-data:/var/lib/mongodb" + ], + "restart": "always", + "environment": {} + } + } + }, + "instructions": { + "start": "Countly. This will only work over HTTPS, so enable plz :) | Product Analytics for Mobile, Web, Desktop and IoT | https://count.ly", + "end": "Countly is deployed and available as $$cap_appname" + }, + "variables": [{ + "id": "$$cap_countly_version", + "label": "What version/tag do you want?", + "description": "Go here to see all versions https://hub.docker.com/r/countly/countly-server/tags", + "defaultValue": "latest", + "validRegex": "/^([^\\s^\\/])+$/" + } + ] +} |
