forked from Simon-Initiative/oli-torus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (45 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
49 lines (45 loc) · 1.08 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
services:
app:
build: .
depends_on:
- postgres
env_file: ./oli.env
ports:
- 80:80
- 443:443
postgres:
image: pgvector/pgvector:pg18
logging:
driver: "json-file"
options:
max-file: "1"
max-size: 5m
ports:
- 5432:5432
env_file: ./postgres.env
volumes:
- pg_data:/var/lib/postgresql
minio:
image: minio/minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: your_minio_access_key
MINIO_ROOT_PASSWORD: your_minio_secret_key
volumes:
- minio_data:/data
command: ["server", "--console-address", ":9001", "/data"]
clickhouse:
image: clickhouse/clickhouse-server:latest
ports:
- "8123:8123" # HTTP interface
- "9090:9000" # Native client (changed to avoid conflict with minio)
- "9009:9009" # TCP for inter-server communication
volumes:
- clickhouse_data:/var/lib/clickhouse
- ./clickhouse/users.xml:/etc/clickhouse-server/users.d/dev-users.xml
volumes:
pg_data:
minio_data:
clickhouse_data: