v2
This commit is contained in:
20
ai-templates-0/stacks/mlflow/docker-compose.yml
Normal file
20
ai-templates-0/stacks/mlflow/docker-compose.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
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:
|
||||
Reference in New Issue
Block a user