mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 23:45: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
14 lines
289 B
YAML
14 lines
289 B
YAML
version: "3.8"
|
|
services:
|
|
agent-zero:
|
|
image: agent0ai/agent-zero:v1.9
|
|
restart: unless-stopped
|
|
expose:
|
|
- "80"
|
|
environment:
|
|
- AUTH_LOGIN=${AUTH_LOGIN}
|
|
- AUTH_PASSWORD=${AUTH_PASSWORD}
|
|
volumes:
|
|
- agent-zero-data:/a0/usr
|
|
volumes:
|
|
agent-zero-data: |