From c50b0e315a632fa79e16befb86e1a36c315188c9 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 6 Mar 2024 16:31:32 -0800 Subject: [PATCH] (feat) don't use --detailed_debug on all default litellm images --- Dockerfile | 5 ++++- Dockerfile.database | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bcb4ee692..24c11c513 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,4 +61,7 @@ RUN chmod +x entrypoint.sh EXPOSE 4000/tcp ENTRYPOINT ["litellm"] -CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--detailed_debug", "--run_gunicorn"] \ No newline at end of file + +# Append "--detailed_debug" to the end of CMD to view detailed debug logs +# CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--run_gunicorn", "--detailed_debug"] +CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--run_gunicorn"] \ No newline at end of file diff --git a/Dockerfile.database b/Dockerfile.database index 1206aba88..9e2d1637b 100644 --- a/Dockerfile.database +++ b/Dockerfile.database @@ -65,4 +65,7 @@ EXPOSE 4000/tcp # # Set your entrypoint and command ENTRYPOINT ["litellm"] + +# Append "--detailed_debug" to the end of CMD to view detailed debug logs +# CMD ["--port", "4000","--run_gunicorn", "--detailed_debug"] CMD ["--port", "4000", "--run_gunicorn"]