mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-07-09 17:08:29 +00:00
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.
14 lines
289 B
YAML
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"
|