forked from DougTrajano/mlflow-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
927d755
commit c9eddc7
Showing
3 changed files
with
71 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "mlflow-server", | ||
"description": "MLflow Tracking Server with basic authentication (user/password).", | ||
"logo": "https://mlflow.org/docs/1.27.0/_static/MLflow-logo-final-black.png", | ||
"keywords": [ | ||
"machine learning", | ||
"data science", | ||
"machinelearning", | ||
"mlflow", | ||
"experiment tracking" | ||
], | ||
"repository": "https://github.com/DougTrajano/mlflow-server", | ||
"stack": "container", | ||
"env": { | ||
"MLFLOW_TRACKING_PASSWORD": { | ||
"description": "Password for mlflow web dashboard and HTTP API", | ||
"value": "mlflow" | ||
}, | ||
"MLFLOW_TRACKING_USERNAME": { | ||
"description": "Username for mlflow web dashboard and HTTP API", | ||
"value": "mlflow" | ||
}, | ||
"MLFLOW_ARTIFACT_URI": { | ||
"description": "URI for mlflow artifacts", | ||
"value": "./mlruns" | ||
}, | ||
"AWS_ACCESS_KEY_ID": { | ||
"description": "AWS access key ID", | ||
"value": "ACCESS_KEY_ID" | ||
}, | ||
"AWS_SECRET_ACCESS_KEY": { | ||
"description": "AWS secret access key", | ||
"value": "SECRET_ACCESS_KEY" | ||
} | ||
}, | ||
"addons": [ | ||
{ | ||
"plan": "heroku-postgresql" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
build: | ||
docker: | ||
mlflow: Dockerfile | ||
web: Dockerfile | ||
|
||
setup: | ||
addons: | ||
- plan: heroku-postgresql | ||
as: DATABASE | ||
as: DATABASE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters