agent-zero/docker/run/docker-compose.yml
Alessandro 68c31b51e1 Raise Docker open file limit at startup
Raise the runtime container soft nofile limit before supervisord starts so WebUI and managed services inherit a larger descriptor allowance.

Add an explicit compose nofile example, document the startup contract, and cover the limit raise and hard-limit cap with focused regression tests.
2026-06-24 11:00:00 +02:00

14 lines
289 B
YAML

services:
agent-zero:
container_name: agent-zero
image: agent0ai/agent-zero:latest
volumes:
- ./agent-zero:/a0
ports:
- "50080:80"
ulimits:
nofile:
soft: 65535
hard: 65535
extra_hosts:
- "host.docker.internal:host-gateway"