-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
197 lines (187 loc) · 4.72 KB
/
docker-compose.yaml
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
x-base-llm-proxy-environment: &base-llm-proxy-environment
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}
OPENAI_API_KEY: ${OPENAI_API_KEY}
GEMINI_API_KEY: ${GEMINI_API_KEY}
LITELLM_MASTER_KEY: ${LLM_PROXY_API_KEY:-sk-1234}
x-base-llm-proxy-service: &base-llm-proxy-service
image: ghcr.io/berriai/litellm:main-latest
networks:
- searxng
ports:
- "127.0.0.1:${LLM_PROXY_PORT:-8097}:8097"
environment:
<<: *base-llm-proxy-environment
volumes:
- ./litellm/litellm_config.yaml:/app/config.yaml
command: --config /app/config.yaml --port ${LLM_PROXY_PORT:-8097}
healthcheck:
test:
[
"CMD",
"curl",
"-f",
"-H",
"Authorization: Bearer ${LLM_PROXY_API_KEY:-sk-1234}",
"http://localhost:${LLM_PROXY_PORT:-8097}/health",
]
interval: 30s
timeout: 10s
retries: 3
cap_drop:
- ALL
cap_add:
- NET_BIND_SERVICE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
services:
caddy:
container_name: caddy
image: docker.io/library/caddy:2-alpine
network_mode: host
restart: unless-stopped
volumes:
- ./searxng-docker/Caddyfile:/etc/caddy/Caddyfile:ro
- caddy-data:/data:rw
- caddy-config:/config:rw
environment:
- SEARXNG_HOSTNAME=${SEARXNG_HOSTNAME:-http://localhost:80}
- SEARXNG_TLS=${LETSENCRYPT_EMAIL:-internal}
cap_drop:
- ALL
cap_add:
- NET_BIND_SERVICE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
redis:
container_name: searx-redis
image: docker.io/valkey/valkey:8-alpine
command: valkey-server --save 30 1 --loglevel warning
restart: unless-stopped
networks:
- searxng
volumes:
- valkey-data2:/data
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: unless-stopped
networks:
- searxng
ports:
- "127.0.0.1:${SEARX_PORT:-8096}:8080"
volumes:
- ./searxng-docker/searxng:/etc/searxng:rw
environment:
- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
- UWSGI_WORKERS=${SEARXNG_UWSGI_WORKERS:-4}
- UWSGI_THREADS=${SEARXNG_UWSGI_THREADS:-4}
- SEARXNG_SECRET=${SEARXNG_SECRET:-$(openssl rand -hex 32)}
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
llm-proxy:
<<: *base-llm-proxy-service
container_name: llm-proxy
profiles: ["default"]
llm-proxy-with-logging:
<<: *base-llm-proxy-service
container_name: llm-proxy-with-logging
environment:
<<: *base-llm-proxy-environment
LANGFUSE_PUBLIC_KEY: ${LANGFUSE_PUBLIC_KEY:-UNSET_IGNORE_WARNING}
LANGFUSE_SECRET_KEY: ${LANGFUSE_SECRET_KEY:-UNSET_IGNORE_WARNING}
LANGFUSE_HOST: ${LANGFUSE_HOST:-localhost:-http://localhost:8098}
volumes:
- ./litellm/litellm_config_w_logging.yaml:/app/config.yaml
profiles: ["llm-logging"]
langfuse-server:
container_name: langfuse-server
image: langfuse/langfuse:2
profiles: ["llm-logging"]
networks:
- searxng
depends_on:
langfuse-db:
condition: service_healthy
ports:
- "127.0.0.1:${LANGFUSE_PORT:-8098}:3000"
environment:
- DATABASE_URL=postgresql://postgres:postgres@langfuse-db:5432/postgres
- NEXTAUTH_SECRET=mysecret
- SALT=mysalt
- ENCRYPTION_KEY=0000000000000000000000000000000000000000000000000000000000000000
- NEXTAUTH_URL=http://localhost:${LANGFUSE_PORT:-8098}
- TELEMETRY_ENABLED=false
cap_drop:
- ALL
cap_add:
- NET_BIND_SERVICE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
langfuse-db:
container_name: langfuse-db
image: postgres:15-alpine
profiles: ["llm-logging"]
networks:
- searxng
restart: always
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 3s
timeout: 3s
retries: 10
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=postgres
volumes:
- langfuse_data:/var/lib/postgresql/data
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
networks:
searxng:
volumes:
caddy-data:
caddy-config:
valkey-data2:
langfuse_data:
driver: local