-
Notifications
You must be signed in to change notification settings - Fork 73
/
docker-compose-full.yml
140 lines (131 loc) · 3.74 KB
/
docker-compose-full.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# This compose definition pulls the latest images from the GitHub Container Registry.
# This is the best and fastest for self hosting, as the images are already built and ready to go.
# If you want to build images locally, you can use the docker-compose-local-build.yml file instead.
name: lmnr
services:
qdrant:
image: qdrant/qdrant
ports:
- "6333:6333"
- "6334:6334"
volumes:
- type: volume
source: qdrant-data
target: /data
rabbitmq:
image: rabbitmq
ports:
- "5672:5672"
environment:
RABBITMQ_DEFAULT_USER: ${RABBITMQ_DEFAULT_USER}
RABBITMQ_DEFAULT_PASS: ${RABBITMQ_DEFAULT_PASS}
healthcheck:
test: rabbitmq-diagnostics -q check_running && rabbitmq-diagnostics -q check_local_alarms
interval: 10s
timeout: 10s
retries: 3
clickhouse:
build:
context: ./clickhouse
container_name: clickhouse
ports:
- "8123:8123"
volumes:
- type: volume
source: clickhouse-data
target: /var/lib/clickhouse/
- type: volume
source: clickhouse-logs
target: /var/log/clickhouse-server/
cap_add:
- SYS_NICE
- NET_ADMIN
- IPC_LOCK
ulimits:
nofile:
soft: 262144
hard: 262144
semantic-search-service:
image: ghcr.io/lmnr-ai/semantic-search-service
ports:
- "8080:8080"
depends_on:
- qdrant
environment:
- PORT=8080
- QDRANT_URL=http://qdrant:6334
- COHERE_ENDPOINT=https://api.cohere.ai/v1/embed
- COHERE_API_KEY=${COHERE_API_KEY}
pull_policy: always
python-executor:
image: ghcr.io/lmnr-ai/python-executor
ports:
- "8811:8811"
pull_policy: always
postgres:
image: postgres:16
ports:
- "5432:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
healthcheck:
test: ["CMD", "pg_isready", "-U", "${POSTGRES_USER}", "-d", "${POSTGRES_DB}"]
interval: 2s
timeout: 5s
retries: 5
app-server:
image: ghcr.io/lmnr-ai/app-server
ports:
- "8000:8000"
- "8001:8001"
depends_on:
semantic-search-service:
condition: service_started
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
clickhouse:
condition: service_started
pull_policy: always
environment:
- PORT=8000
- GRPC_PORT=8001
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}
- SEMANTIC_SEARCH_URL=http://semantic-search-service:8080
- RABBITMQ_URL=amqp://${RABBITMQ_DEFAULT_USER}:${RABBITMQ_DEFAULT_PASS}@rabbitmq:5672/%2f
- CLICKHOUSE_URL=http://clickhouse:8123
- CLICKHOUSE_USER=${CLICKHOUSE_USER}
- CODE_EXECUTOR_URL=http://python-executor:8811
- SHARED_SECRET_TOKEN=${SHARED_SECRET_TOKEN}
- ENVIRONMENT=FULL
frontend:
image: ghcr.io/lmnr-ai/frontend
ports:
- "3000:3000"
pull_policy: always
depends_on:
postgres:
condition: service_healthy
clickhouse:
condition: service_started
environment:
- PORT=3000
- BACKEND_URL=http://app-server:8000
- SHARED_SECRET_TOKEN=${SHARED_SECRET_TOKEN}
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}
- NEXTAUTH_URL=http://localhost:3000
- NEXTAUTH_SECRET=some_secret
- NEXT_PUBLIC_URL=http://localhost:3000
- ENVIRONMENT=FULL
- CLICKHOUSE_URL=http://clickhouse:8123
- CLICKHOUSE_USER=${CLICKHOUSE_USER}
volumes:
qdrant-data:
clickhouse-data:
clickhouse-logs:
postgres-data: