-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
205 lines (192 loc) · 4.58 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
198
199
200
201
202
203
204
205
services:
envoy:
image: envoyproxy/envoy:${ENVOY_VERSION:-v1.22-latest}
ports:
- "8080:8000"
- "9901:9901"
volumes:
- ./envoy.yaml:/etc/envoy/envoy.yaml
# turn on logging as needed; can be noisy otherwise
# logging:
# driver: none
upstream:
hostname: upstream
image: echo-server:${IMAGE_TAG:-compose}
build:
context: tests/mocks/echo
dockerfile: "Dockerfile"
ports:
- "8000:80"
environment:
- LOG_LEVEL=info
streaming:
hostname: streaming
image: streaming-server:${IMAGE_TAG:-compose}
build:
context: tests/mocks/streaming
dockerfile: "Dockerfile"
ports:
- "8001:80"
openai:
hostname: openai
image: streaming-server:${IMAGE_TAG:-compose}
build:
context: tests/mocks/streaming
dockerfile: "Dockerfile"
ports:
- "8002:80"
environment:
- PROVIDER=openai
- LOG_LEVEL=debug
anthropic:
hostname: anthropic
image: streaming-server:${IMAGE_TAG:-compose}
build:
context: tests/mocks/streaming
dockerfile: "Dockerfile"
ports:
- "8003:80"
environment:
- PROVIDER=anthropic
- LOG_LEVEL=debug
base:
image: envoy-extproc-sdk:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: Dockerfile
trivial:
hostname: "trivial"
image: envoy-extproc-sdk-examples:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: examples/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-compose}
ports:
- "50051:50051"
environment:
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- DD_TRACE_ENABLED=false
command:
- --logging
- --service
- examples.TrivialExtProcService
timer:
hostname: timer
image: envoy-extproc-sdk-examples:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: examples/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-compose}
ports:
- "50052:50051"
environment:
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- DD_TRACE_ENABLED=false
command:
- --logging
- --service
- examples.TimerExtProcService
echo:
hostname: echo
image: envoy-extproc-sdk-examples:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: examples/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-compose}
ports:
- "50053:50051"
environment:
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- DD_TRACE_ENABLED=false
command:
- --logging
- --service
- examples.EchoExtProcService
digest:
hostname: digest
image: envoy-extproc-sdk-examples:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: examples/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-compose}
ports:
- "50054:50051"
environment:
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- DD_TRACE_ENABLED=false
command:
- --logging
- --service
- examples.DigestExtProcService
decorated:
hostname: decorated
image: envoy-extproc-sdk-examples:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: examples/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-compose}
ports:
- "50055:50051"
environment:
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- DD_TRACE_ENABLED=false
command:
- --logging
- --service
- examples.DecoratedExtProcService
context:
hostname: context
image: envoy-extproc-sdk-examples:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: examples/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-compose}
ports:
- "50056:50051"
environment:
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- DD_TRACE_ENABLED=false
command:
- --logging
- --service
- examples.CtxExtProcService
body_modify:
hostname: body_modify
image: envoy-extproc-sdk-examples:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: examples/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-compose}
ports:
- "50057:50051"
environment:
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- DD_TRACE_ENABLED=false
command:
- --logging
- --service
- examples.BodyModifyExtProcService
llm_proxy:
hostname: llm_proxy
image: envoy-extproc-sdk-examples:${IMAGE_TAG:-compose}
build:
context: .
dockerfile: examples/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-compose}
ports:
- "50058:50051"
environment:
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- DD_TRACE_ENABLED=false
command:
- --logging
- --service
- examples.LLMProxyExtProcService