fix: mlflow artifact path

This commit is contained in:
Stijnvandenbroek
2026-03-08 17:01:37 +00:00
parent 05aadaec29
commit 0e6a3f17e2

View File

@@ -32,6 +32,8 @@ exec mlflow server \
--host=0.0.0.0 \ --host=0.0.0.0 \
--port=5000 \ --port=5000 \
--backend-store-uri="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/mlflow" \ --backend-store-uri="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/mlflow" \
--default-artifact-root=/mlflow/artifacts \ --serve-artifacts \
--artifacts-destination=/mlflow/artifacts \
--default-artifact-root=mlflow-artifacts:/ \
--allowed-hosts="*" \ --allowed-hosts="*" \
--cors-allowed-origins="*" --cors-allowed-origins="*"