Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/content/using-tesseracts/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ As an alternative to the MLflow setup we provide, you can point your Tesseract t
$ tesseract serve --env=TESSERACT_MLFLOW_TRACKING_URI="..." metrics
````

Note that if your MLFlow server uses basic auth, you need to populate the `MLFLOW_TRACKING_USERNAME` and `MLFLOW_TRACKING_PASSWORD`
for the Tesseract to be able to authenticate to it.

```bash
$ tesseract serve --env=TESSERACT_MLFLOW_TRACKING_URI="..." \
--env=MLFLOW_TRACKING_USERNAME="..." --env=MLFLOW_TRACKING_PASSWORD="..." \
metrics
````

## Volume mounts and user permissions

When mounting a volume into a Tesseract container, default behavior depends on the Docker engine being used. Specifically, Docker Desktop, Docker Engine, and Podman have different ways of handling user permissions for mounted volumes.
Expand Down