https://github.com/burakince/mlflow
Mlflow Docker Image
https://github.com/burakince/mlflow
ai docker docker-image machine-learning ml mlflow mlflow-docker mlflow-tracking mlflow-tracking-server model-management
Last synced: 5 months ago
JSON representation
Mlflow Docker Image
- Host: GitHub
- URL: https://github.com/burakince/mlflow
- Owner: burakince
- License: mit
- Created: 2022-04-11T20:20:58.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-12-20T22:02:49.000Z (6 months ago)
- Last Synced: 2025-12-21T09:42:05.432Z (6 months ago)
- Topics: ai, docker, docker-image, machine-learning, ml, mlflow, mlflow-docker, mlflow-tracking, mlflow-tracking-server, model-management
- Language: Python
- Homepage:
- Size: 2.07 MB
- Stars: 21
- Watchers: 1
- Forks: 26
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](https://github.com/burakince/mlflow/actions/workflows/docker-publish.yml)


[](https://artifacthub.io/packages/search?repo=mlflow)
# Mlflow Docker Image
Please find mlflow docker images from [mlflow docker hub repository](https://hub.docker.com/r/burakince/mlflow).
# Database Requirements
The following databases have been tested for compatibility:
- PostgreSQL
- MySQL
- Microsoft SQL Server
Please find tested database versions from [this](./.env) file.
It is recommended to use at least the minimum tested major version of the database to ensure proper functionality and compatibility.
# Usage
Run following command
```
docker run -d -p 5000:5000 burakince/mlflow
```
## Security Context
The Docker image runs as a non-root user (`mlflow`) with the following default settings:
- **User ID (UID)**: 1001
- **Group ID (GID)**: 1001
The python virtual environment located under `/opt` folder for both debian and alpine based images. You can more details from `/opt/venv/` directory.
## Development
Enabling Colima for testcontainers.
```bash
export TESTCONTAINERS_DOCKER_SOCKET_OVERRIDE=/var/run/docker.sock
export DOCKER_HOST="unix://${HOME}/.colima/docker.sock"
```
## Contributions
