-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcompose.yml
39 lines (39 loc) · 892 Bytes
/
compose.yml
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
30
31
32
33
34
35
36
37
38
39
services:
ccat:
build:
context: .
dockerfile: ./Dockerfile
container_name: ccat_ts
env_file:
- .env
environment:
- FORCE_COLOR=1
- QDRANT_HOST=${QDRANT_HOST:-ccat_ts_vector_memory}
- QDRANT_PORT=${QDRANT_PORT:-6333}
ports:
- ${CORE_PORT:-1865}:80
volumes:
- ./data:/app/data
- ./static:/app/src/static
- ./plugins:/app/src/plugins
restart: unless-stopped
depends_on:
- vector-memory
vector-memory:
image: qdrant/qdrant:v1.13.0
container_name: ccat_ts_vector_memory
env_file:
- .env
environment:
- QDRANT__LOG_LEVEL=INFO
expose:
- 6333
volumes:
- ./data/long_term_memory:/qdrant/storage
restart: unless-stopped
cache:
image: redis:7.4.1-bookworm
container_name: ccat_ts_cache
expose:
- 6379
restart: unless-stopped