-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yml
More file actions
70 lines (65 loc) · 1.6 KB
/
compose.yml
File metadata and controls
70 lines (65 loc) · 1.6 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
62
63
64
65
66
67
68
69
70
services:
valkey:
image: valkey/valkey:8.0.3-alpine3.21
container_name: onward-valkey
restart: unless-stopped
command: valkey-server --requirepass secret
ports:
- 6379:6379
volumes:
- valkey:/data
postgres:
image: postgres:17.5-alpine3.21
container_name: onward-postgres
restart: unless-stopped
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: secret
POSTGRES_DB: onward-dev
ports:
- 5432:5432
volumes:
- postgres:/var/lib/postgresql/data
minio:
image: minio/minio:RELEASE.2025-07-23T15-54-02Z-cpuv1
container_name: onward-minio
restart: unless-stopped
environment:
MINIO_ROOT_USER: minioaccesskey
MINIO_ROOT_PASSWORD: miniosecretkey
ports:
- 9000:9000
- 9001:9001
volumes:
- minio:/data
command: server /data --console-address :9001
weaviate:
image: semitechnologies/weaviate:1.32.4
container_name: onward-weaviate
restart: unless-stopped
environment:
ENABLE_MODULES: 'text2vec-openai'
ASYNC_INDEXING: true
CLUSTER_HOSTNAME: 'node1'
AUTHENTICATION_APIKEY_ENABLED: true
AUTHENTICATION_APIKEY_USERS: dummy
AUTHENTICATION_APIKEY_ALLOWED_KEYS: secret
command: weaviate --host 0.0.0.0 --port 50050 --scheme http
ports:
- 50050:50050
- 50051:50051
volumes:
- weaviate:/data
learner:
image: onward/learner:latest
container_name: onward-learner
build:
context: .
dockerfile: ./Dockerfile
ports:
- 3000:3000
volumes:
valkey:
postgres:
minio:
weaviate: