Files
templates/blueprints/agent-zero/docker-compose.yml
Luis 989bf839b6 feat: add Agent Zero autonomous AI agent blueprint (#791)
* 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
2026-07-07 15:03:09 -06:00

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: