mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
24 lines
380 B
TOML
24 lines
380 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
db_password = "${password:32}"
|
|
any_helper = "${uuid}"
|
|
|
|
[config]
|
|
env = [
|
|
"DFLY_requirepass=${db_password}",
|
|
]
|
|
|
|
[[config.domains]]
|
|
serviceName = "dragonflydb"
|
|
port = 6379
|
|
host = "${main_domain}"
|
|
path = "/"
|
|
|
|
[[config.mounts]]
|
|
filePath = "/content/configuration.conf"
|
|
content = """
|
|
bind-address = "0.0.0.0"
|
|
port = 6379
|
|
log-level = "info"
|
|
"""
|