From fa05731d0073036b4c7cb558238079a6cf10f1dc Mon Sep 17 00:00:00 2001 From: RX-Penguin Date: Fri, 17 Jul 2026 12:53:34 +0800 Subject: [PATCH] Add Mem0 service to docker-compose for persistent AI memory integration --- docker-compose.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 3c7c285..30bb79e 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -147,6 +147,26 @@ services: networks: - git_forge + # Mem0 - Persistent Memory Layer for AI Agents (RAG / Second Brain) + mem0: + container_name: mem0 + image: mem0ai/mem0:latest + restart: unless-stopped + environment: + TZ: Asia/Shanghai + volumes: + - ./mem0:/app/mem0_data + networks: + - n8n_default + - git_forge + depends_on: + litellm: + condition: service_healthy + postgres: + condition: service_healthy + # ports: + # - "8888:8000" # Uncomment if you want direct API access + networks: git_forge: name: git_forge -- 2.47.2