summaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorGustavo <[email protected]>2024-03-29 20:28:32 -0300
committerGitHub <[email protected]>2024-03-29 16:28:32 -0700
commit536c496ed4692d19cdc56608b1f6c863666fb11c (patch)
tree9825736410ba47d27ddf64417e14888496f64b56 /public
parentd1a88761405e7b00b8fa3270d64e96b45c9889c1 (diff)
downloadcaprover-one-click-apps-536c496ed4692d19cdc56608b1f6c863666fb11c.tar.gz
caprover-one-click-apps-536c496ed4692d19cdc56608b1f6c863666fb11c.zip
Feture: dragonflydb (#1060)
* Feture: dragonflydb * add recommended amount of ram
Diffstat (limited to 'public')
-rw-r--r--public/v4/apps/dragonflydb.yml37
-rw-r--r--public/v4/logos/dragonflydb.pngbin0 -> 3603 bytes
2 files changed, 37 insertions, 0 deletions
diff --git a/public/v4/apps/dragonflydb.yml b/public/v4/apps/dragonflydb.yml
new file mode 100644
index 0000000..f66ab16
--- /dev/null
+++ b/public/v4/apps/dragonflydb.yml
@@ -0,0 +1,37 @@
+captainVersion: 4
+services:
+ $$cap_appname:
+ image: docker.dragonflydb.io/dragonflydb/dragonfly:$$cap_dragonflydb_version
+ volumes:
+ - $$cap_appname-dragonflydb-data:/data
+ restart: always
+ environment:
+ DFLY_requirepass: $$cap_dragonflydb_password
+ DFLY_maxmemory: $$cap_dragonflydb_maxmem
+caproverOneClickApp:
+ variables:
+ - id: $$cap_dragonflydb_version
+ label: Dragonfly Version Tag
+ description: 'Check out their Github page for the valid tags: https://github.com/dragonflydb/dragonfly/releases'
+ defaultValue: 'v1.14.0'
+ validRegex: /^v\d+\.\d+\.\d+$/
+ - id: $$cap_dragonflydb_password
+ label: Dragonfly Password
+ validRegex: ''
+ - id: $$cap_dragonflydb_maxmem
+ label: Dragonfly Max Memory
+ description: 'Dragonfly recommends at least 4GB to take advantage of its full power, however you can run with smaller amounts if necessary.'
+ validRegex: /^[1-9]\d*GB$/
+ defaultValue: 4GB
+ instructions:
+ start: >-
+ Dragonfly is a simple, performant, and cost-efficient in-memory data store. Dragonfly is fully compatible with Redis APIs but without the Redis management complexity.
+
+ After installation on CapRover, it will be available as srv-captain--YOUR_CONTAINER_NAME at port 6379 to other CapRover apps.
+
+ Enter your Dragonfly container name and click on next. It will take about a minute for the process to finish.
+ end: "Dragonfly is deployed and available as srv-captain--$$cap_appname:6379 to other apps. For example with NodeJS: const client = redis.createClient(6379, 'srv-captain--$$cap_appname' , {password: '$$cap_dragonflydb_password'})"
+ displayName: 'Dragonfly'
+ isOfficial: true
+ description: Dragonfly is a simple, performant, and cost-efficient in-memory data store.
+ documentation: Taken from https://www.dragonflydb.io/docs/getting-started/docker
diff --git a/public/v4/logos/dragonflydb.png b/public/v4/logos/dragonflydb.png
new file mode 100644
index 0000000..b56b6f9
--- /dev/null
+++ b/public/v4/logos/dragonflydb.png
Binary files differ