-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
46 lines (43 loc) · 999 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
43
44
45
46
services:
system_db:
env_file:
- systemdb.env
image: postgres:17-alpine
container_name: system_db
restart: always
ports:
- '5436:5432'
volumes:
- system_db_data:/var/lib/postgresql/data
# - ./data/systemdb_init.sql:/docker-entrypoint-initdb.d/0-systemdb_init.sql
networks:
- default
vector_db:
env_file:
- vectordb.env
image: pgvector/pgvector:pg17
container_name: vector_db
restart: always
ports:
- '5437:5432'
volumes:
- vector_db_data:/var/lib/postgresql/data
# - ./data/vectordb_init.sql:/docker-entrypoint-initdb.d/0-vectordb_init.sql
networks:
- default
northwind:
env_file:
- northwind.env
image: manchestercodes/northwind
container_name: northwind_db
restart: always
ports:
- '3307:3306'
volumes:
- northwind_data:/var/lib/mysql
networks:
- default
volumes:
vector_db_data:
system_db_data:
northwind_data: