-
Notifications
You must be signed in to change notification settings - Fork 500
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 973 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (28 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
services:
iii-engine:
# Pinned to v0.11.2 — the last engine that runs agentmemory's current
# worker model cleanly. v0.11.6 introduces a new sandbox-everything-
# via-`iii worker add` model that agentmemory hasn't been refactored
# for yet; the architectural mismatch surfaces as EPIPE reconnect
# loops and empty search after save. Bump only after agentmemory is
# refactored to register as a sandboxed worker.
#
# Override per-shell or via .env file:
# AGENTMEMORY_III_VERSION=0.11.7 docker compose up
image: iiidev/iii:${AGENTMEMORY_III_VERSION:-0.11.2}
ports:
- "127.0.0.1:49134:49134"
- "127.0.0.1:3111:3111"
- "127.0.0.1:3112:3112"
- "127.0.0.1:9464:9464"
volumes:
- iii-data:/data
- ./iii-config.docker.yaml:/app/config.yaml:ro
restart: unless-stopped
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
volumes:
iii-data: