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