-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (50 loc) · 1012 Bytes
/
docker-compose.yml
File metadata and controls
57 lines (50 loc) · 1012 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
53
54
55
56
57
version: "3.8"
services:
registry:
image: registry:2
ports:
- "5000:5000"
volumes:
- registry-data:/var/lib/registry
minio:
image: minio/minio
command: server /data --console-address ":9001"
environment:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
ports:
- "9000:9000"
- "9001:9001"
volumes:
- minio-data:/data
postgres:
image: ankane/pgvector
environment:
POSTGRES_USER: noa
POSTGRES_PASSWORD: noa
POSTGRES_DB: noa
ports:
- "5432:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
supabase:
image: supabase/postgres
environment:
POSTGRES_PASSWORD: supersecret
ports:
- "5433:5432"
volumes:
- supabase-data:/var/lib/postgresql/data
redis:
image: redis:7
ports:
- "6379:6379"
nats:
image: nats:2
ports:
- "4222:4222"
volumes:
registry-data:
minio-data:
postgres-data:
supabase-data: