From 09d6295867287f5c230a09038a7461d60358dfce Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 22 Jul 2026 00:44:34 -0700 Subject: [PATCH] chore: capture stock LiteLLM startup log --- servers/bwh-hk-dc3/litellm/compose.yaml | 5 ++++- servers/bwh-hk-dc3/litellm/runtime/.gitignore | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 servers/bwh-hk-dc3/litellm/runtime/.gitignore diff --git a/servers/bwh-hk-dc3/litellm/compose.yaml b/servers/bwh-hk-dc3/litellm/compose.yaml index e028705..41d76a7 100644 --- a/servers/bwh-hk-dc3/litellm/compose.yaml +++ b/servers/bwh-hk-dc3/litellm/compose.yaml @@ -29,7 +29,10 @@ services: volumes: - ./config.yaml:/app/config.yaml:ro - google-adc:/credentials:ro - command: ["--config", "/app/config.yaml", "--host", "0.0.0.0", "--port", "4000"] + - ./runtime:/runtime + entrypoint: ["/bin/sh", "-c"] + command: + - exec /app/docker/prod_entrypoint.sh --config /app/config.yaml --host 0.0.0.0 --port 4000 > /runtime/litellm.log 2>&1 logging: driver: json-file options: diff --git a/servers/bwh-hk-dc3/litellm/runtime/.gitignore b/servers/bwh-hk-dc3/litellm/runtime/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/servers/bwh-hk-dc3/litellm/runtime/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore