Skip to content

Commit a6917fe

Browse files
docs: removes debug flag from aigw docker (#1099)
**Description** The debug flag is too chatty and wasn't intended to be in config users would end up using by default. --------- Signed-off-by: Adrian Cole <[email protected]>
1 parent c28b38b commit a6917fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/aigw/docker-compose-otel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ services:
7272
- ./testdata/ai-gateway-ollama-docker.yaml:/app/config.yaml:ro
7373
- envoy-cache:/tmp/envoy-gateway
7474
working_dir: /app
75-
command: ["sh", "-c", "apt-get update && apt-get install -y ca-certificates && ./aigw run --debug /app/config.yaml"]
75+
command: ["sh", "-c", "apt-get update && apt-get install -y ca-certificates && ./aigw run /app/config.yaml"]
7676

7777
# chat-completion is the standard OpenAI client (`openai` in pip), instrumented
7878
# with the following OpenTelemetry instrumentation libraries:

cmd/aigw/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ services:
5050
- ./testdata/ai-gateway-ollama-docker.yaml:/app/config.yaml:ro
5151
- envoy-cache:/tmp/envoy-gateway
5252
working_dir: /app
53-
command: ["sh", "-c", "apt-get update && apt-get install -y ca-certificates && ./aigw run --debug /app/config.yaml"]
53+
command: ["sh", "-c", "apt-get update && apt-get install -y ca-certificates && ./aigw run /app/config.yaml"]
5454

5555
# chat-completion is a simple curl-based test client for sending requests to aigw.
5656
chat-completion:

0 commit comments

Comments
 (0)