21 lines
419 B
YAML
21 lines
419 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
mlflow:
|
|
image: ghcr.io/mlflow/mlflow:latest
|
|
container_name: mlflow
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${MLFLOW_PORT:-5000}:5000"
|
|
volumes:
|
|
- mlflow_data:/mlflow
|
|
command: >
|
|
mlflow server
|
|
--host 0.0.0.0
|
|
--port 5000
|
|
--backend-store-uri sqlite:///mlflow/mlflow.db
|
|
--default-artifact-root /mlflow/artifacts
|
|
|
|
volumes:
|
|
mlflow_data:
|