-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
61 lines (56 loc) · 5.14 KB
/
docker-compose.yml
File metadata and controls
61 lines (56 loc) · 5.14 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
services:
postgres:
image: postgres:16
container_name: prepit_postgres
restart: unless-stopped
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
weaviate:
image: semitechnologies/weaviate:1.27.0
container_name: prepit_weaviate
restart: unless-stopped
ports:
- "8083:8080"
- "50051:50051"
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: "true"
PERSISTENCE_DATA_PATH: /var/lib/weaviate
DEFAULT_VECTORIZER_MODULE: none
ENABLE_MODULES: ""
CLUSTER_HOSTNAME: node1
volumes:
- weaviate_data:/var/lib/weaviate
phoenix:
image: arizephoenix/phoenix:latest
container_name: prepit_phoneix
restart: unless-stopped
ports:
- "6006:6006"
- "4317:4317"
volumes:
- phoenix_data:/root/.phoenix
pgadmin:
image: dpage/pgadmin4:latest
container_name: prepit_pgadmin
restart: unless-stopped
ports:
- "5050:80"
depends_on:
- postgres
app:
build: .
container_name: prepit_app
restart: unless-stopped
ports:
- "8000:8000"
depends_on:
- postgres
- weaviate
- phoenix
volumes:
postgres_data:
weaviate_data:
phoenix_data: