-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
42 lines (41 loc) · 957 Bytes
/
docker-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
40
41
42
services:
postgres:
container_name: postgres
image: postgres:latest
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: intellichat
volumes:
- /data/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
networks:
intellichat:
aliases:
- postgres
weaviate:
command:
- --host
- 0.0.0.0
- --port
- '9092'
- --scheme
- http
image: semitechnologies/weaviate:1.20.3
volumes:
- /data/weaviate:/var/lib/weaviate
ports:
- 9092:9092
restart: on-failure:0
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
DEFAULT_VECTORIZER_MODULE: text2vec-openai
ENABLE_MODULES: text2vec-openai
CLUSTER_HOSTNAME: 'node1'
networks:
intellichat:
aliases:
- weaviate