mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
feat: add dragonfly
This commit is contained in:
12
blueprints/dragonfly-db/docker-compose.yml
Normal file
12
blueprints/dragonfly-db/docker-compose.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
dragonfly:
|
||||
image: 'docker.dragonflydb.io/dragonflydb/dragonfly'
|
||||
ulimits:
|
||||
memlock: -1
|
||||
ports:
|
||||
- "6379:6379"
|
||||
volumes:
|
||||
- dragonflydata:/data
|
||||
volumes:
|
||||
dragonflydata:
|
||||
BIN
blueprints/dragonfly-db/dragonfly-db.png
Normal file
BIN
blueprints/dragonfly-db/dragonfly-db.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.5 KiB |
27
blueprints/dragonfly-db/template.toml
Normal file
27
blueprints/dragonfly-db/template.toml
Normal file
@@ -0,0 +1,27 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
my_password = "${password:32}"
|
||||
any_helper = "${uuid}"
|
||||
|
||||
[config]
|
||||
|
||||
[[config.domains]]
|
||||
serviceName = "dragonflydb"
|
||||
port = 6379
|
||||
host = "${main_domain}"
|
||||
path = "/"
|
||||
|
||||
env = [
|
||||
"DFDB_PASSWORD=${my_password}",
|
||||
"DFDB_HOST=${main_domain}",
|
||||
"DFDB_CLUSTER_ENABLED=${randomPort}",
|
||||
"DFDB_LOG_LEVEL=info"
|
||||
]
|
||||
|
||||
[[config.mounts]]
|
||||
filePath = "/content/configuration.conf"
|
||||
content = """
|
||||
bind-address = "0.0.0.0"
|
||||
port = 6379
|
||||
log-level = "info"
|
||||
"""
|
||||
16
meta.json
16
meta.json
@@ -227,6 +227,22 @@
|
||||
"server"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "dragonfly-db",
|
||||
"name": "Dragonfly",
|
||||
"version": "1.28.1",
|
||||
"description": "Dragonfly is a drop-in Redis replacement that is designed for heavy data workloads running on modern cloud hardware.",
|
||||
"logo": "dragonfly-db.png",
|
||||
"links": {
|
||||
"github": "https://github.com/dragonflydb/dragonfly",
|
||||
"website": "https://www.dragonflydb.io/",
|
||||
"docs": "https://www.dragonflydb.io/docs"
|
||||
},
|
||||
"tags": [
|
||||
"database",
|
||||
"redis",
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "uptime-kuma",
|
||||
"name": "Uptime Kuma",
|
||||
|
||||
Reference in New Issue
Block a user