mindsdb/mindsdb:latest
(or mindsdb/mindsdb
)
It is the lightweight Docker image of MindsDB that comes with these integrations preloaded.
mindsdb/mindsdb:lightwood
It is the Docker image of MindsDB that comes with these integrations and the Lightwood integration preloaded.
mindsdb/mindsdb:huggingface
It is the Docker image of MindsDB that comes with these integrations and the Hugging Face integration preloaded.
docker run
is a native Docker command used to spin up a container.--name mindsdb_container
defines a name for the container.-p 47334:47334
publishes port 47334 to access MindsDB GUI and HTTP API.-p 47335:47335
publishes port 47335 to access MindsDB MySQL API.mindsdb/mindsdb
is a Docker image provided by MindsDB. You can choose a different one from the list above.docker stop mindsdb_container
to stop the container. Note that this may not always be necessary because when turning off the host machine, the container will also be shut down.docker start mindsdb_container
to restart a stopped container with all its previous changes (such as any dependencies that were installed) intact. Note that docker start
restarts a stopped container, while docker run
creates a new container.-d
flag that stands for detach.-v $(pwd)/mdb_data:/root/mdb_storage
maps the newly created folder mdb_data
on the host machine to the /root/mdb_storage
inside the container.127.0.0.1:47334
in your browser.
MKL_SERVICE_FORCE_INTEL
environment variable, as below.docker run
, you can find it by running docker ps
./root/mindsdb_config.json
, as below.
CREATE MODEL
statement.Check out the Use Cases section to follow tutorials that cover Large Language Models, Chatbots, Time Series, Classification, and Regression models, Semantic Search, and more.