forked from rnadigital/agentcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.minimal.yml
More file actions
52 lines (45 loc) · 999 Bytes
/
docker-compose.minimal.yml
File metadata and controls
52 lines (45 loc) · 999 Bytes
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
name: agentcloud
services:
unstructured-api:
ports:
- 9500:9500
container_name: unstructured-api
environment:
- PORT=9500
image: localhost:5000/unstructured-api
docker_rabbitmq:
image: rabbitmq:3.13.1-management
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- "127.0.0.1:5672:5672"
- "127.0.0.1:15672:15672"
docker_mongo:
restart: always
image: mongo:latest
ports:
- "127.0.0.1:27017:27017"
volumes:
- mongodb_data_container:/data/db
docker_redis:
restart: always
image: redis:latest
ports:
- "127.0.0.1:6379:6379"
volumes:
- redis_data:/data
qdrant:
ports:
- '127.0.0.1:6333:6333'
- '127.0.0.1:6334:6334'
image: qdrant/qdrant
environment:
- QDRANT__LOG_LEVEL=DEBUG
volumes:
- qdrant_data:/qdrant_data
volumes:
mongodb_data_container:
redis_data:
datasource_files:
qdrant_data: