#!/bin/bash # Ensure the /data directory exists and has proper permissions mkdir -p /data/mlruns chmod -R 777 /data # Start the MLflow server mlflow server \ --host 0.0.0.0 \ --port 7860 \ --backend-store-uri sqlite:////data/mlflow.db \ --default-artifact-root /data/mlruns