mlflow-server / start_server.sh
MoritzLaurer's picture
MoritzLaurer HF staff
revert back to working build
cc9baa0
raw
history blame
294 Bytes
#!/bin/bash
# Ensure the /data directory exists
mkdir -p /data/mlruns
# Optional: Set permissions
chmod -R 777 /data
# Start the MLflow server
mlflow server \
--backend-store-uri sqlite:////data/mlflow.db \
--default-artifact-root /data/mlruns \
--host 0.0.0.0 \
--port 7860