555e282cc4
pi-agent-plugin checks / lint (push) Has been cancelled
pi-agent-plugin checks / test (20) (push) Has been cancelled
pi-agent-plugin checks / test (22) (push) Has been cancelled
pi-agent-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / check_changes (push) Has been cancelled
TypeScript SDK CI / changelog_check (push) Has been cancelled
ci / changelog_check (push) Has been cancelled
ci / check_changes (push) Has been cancelled
ci / build_mem0 (3.10) (push) Has been cancelled
ci / build_mem0 (3.11) (push) Has been cancelled
ci / build_mem0 (3.12) (push) Has been cancelled
CLI Node CI / lint (push) Has been cancelled
CLI Node CI / test (20) (push) Has been cancelled
CLI Node CI / test (22) (push) Has been cancelled
CLI Node CI / build (push) Has been cancelled
CLI Python CI / lint (push) Has been cancelled
CLI Python CI / test (3.10) (push) Has been cancelled
CLI Python CI / test (3.11) (push) Has been cancelled
CLI Python CI / test (3.12) (push) Has been cancelled
CLI Python CI / build (push) Has been cancelled
openclaw checks / lint (push) Has been cancelled
openclaw checks / test (20) (push) Has been cancelled
openclaw checks / test (22) (push) Has been cancelled
openclaw checks / build (push) Has been cancelled
opencode-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (22) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (22) (push) Has been cancelled
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
services:
|
|
etcd:
|
|
image: quay.io/coreos/etcd:v3.5.5
|
|
restart: unless-stopped
|
|
environment:
|
|
- ETCD_AUTO_COMPACTION_MODE=revision
|
|
- ETCD_QUOTA_BACKEND_BYTES=4294967296
|
|
- ETCD_SNAPSHOT_COUNT=50000
|
|
- ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379
|
|
- ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379
|
|
- ETCD_LISTEN_PEER_URLS=http://0.0.0.0:2380
|
|
- ETCD_INITIAL_ADVERTISE_PEER_URLS=http://etcd:2380
|
|
- ETCD_INITIAL_CLUSTER=default=http://etcd:2380
|
|
- ETCD_NAME=default
|
|
- ETCD_DATA_DIR=/etcd
|
|
volumes:
|
|
- ./data/milvus/etcd:/etcd
|
|
|
|
minio:
|
|
image: minio/minio:RELEASE.2023-10-25T06-33-25Z
|
|
restart: unless-stopped
|
|
command: server /minio_data
|
|
environment:
|
|
- MINIO_ACCESS_KEY=minioadmin
|
|
- MINIO_SECRET_KEY=minioadmin
|
|
volumes:
|
|
- ./data/milvus/minio:/minio_data
|
|
|
|
mem0_store:
|
|
image: milvusdb/milvus:v2.4.7
|
|
restart: unless-stopped
|
|
command: ["milvus", "run", "standalone"]
|
|
depends_on:
|
|
- etcd
|
|
- minio
|
|
environment:
|
|
- ETCD_ENDPOINTS=etcd:2379
|
|
- MINIO_ADDRESS=minio:9000
|
|
ports:
|
|
- "19530:19530"
|
|
- "9091:9091"
|
|
volumes:
|
|
- ./data/milvus/milvus:/var/lib/milvus |