mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* feat: add Agent Zero autonomous AI agent blueprint Added Agent Zero blueprint with SVG logo, Docker Compose configuration for v1.9, and template for deployment. Agent Zero is an open-source autonomous AI agent framework with memory and tool use capabilities. * feat(meta): add documentation link to agent-zero metadata Added docs URL to the links section in meta.json to provide direct access to the project documentation at https://www.agent-zero.ai/p/docs/ * fix: add length parameter to password helper
16 lines
276 B
TOML
16 lines
276 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
auth_login = "${username}"
|
|
auth_password = "${password:32}"
|
|
|
|
[config]
|
|
env = [
|
|
"AUTH_LOGIN=${auth_login}",
|
|
"AUTH_PASSWORD=${auth_password}",
|
|
]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "agent-zero"
|
|
port = 80
|
|
host = "${main_domain}" |