-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yaml
50 lines (45 loc) · 1.09 KB
/
docker-compose.yaml
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
version: "3.7"
services:
mongo:
image: mongo
container_name: mongo
restart: unless-stopped
#environment: # If you disable authentication then you need to remove username and password from connection string in appsettings.
# - MONGO_INITDB_ROOT_USERNAME=${MONGO_INITDB_ROOT_USERNAME}
# - MONGO_INITDB_ROOT_PASSWORD=${MONGO_INITDB_ROOT_PASSWORD}
ports:
- 27017:27017
networks:
- stellar-chat
volumes:
- mongo_data:/data/db
seq:
image: datalust/seq
container_name: seq
restart: unless-stopped
environment:
- ACCEPT_EULA=Y
# - SEQ_FIRSTRUN_ADMINPASSWORDHASH=${SEQ_ADMIN_PASSWORD}
networks:
- stellar-chat
ports:
- 5341:80
volumes:
- seq_data:/data
qdrant:
image: qdrant/qdrant:latest
restart: unless-stopped
container_name: qdrant
networks:
- stellar-chat
ports:
- 6333:6333
volumes:
- qdrant_data:/data
networks:
stellar-chat:
name: stellar-chat-network
volumes:
seq_data:
mongo_data:
qdrant_data: