Cost Efficiency (Open Source)
Lower Long Term costs
Customised data control
Pre-trained model
Get Your Dolphin Mistral AI Model Running in a Day
Dolphin-Mixtral is a powerful AI model designed for advanced natural language processing. Hosting it in a Docker container on an Azure Virtual Machine (VM) allows for seamless deployment, scalability and an isolated execution environment.
Ensure you have an Ubuntu-based Azure VM ready. If you haven’t created one yet, set it up via the Azure Portal or Azure CLI.
Once the VM is running, connect to it via SSH:
ssh -i your-private-key.pem azure-user@your-vm-ip
Update your system packages before proceeding:
sudo apt update && sudo apt upgrade -y
If Docker is not installed, install it using:
sudo apt install docker.io -y
sudo systemctl start docker
sudo systemctl enable docker
Now, pull and run the Ollama container, which will manage Dolphin-Mixtral:
docker run -d --name ollama -p 11434:11434 -v ollama:/root/.ollama ollama/ollama
Verify the container is running:
docker ps
Once the Ollama container is running, install Dolphin-Mixtral inside it:
docker exec -it ollama /bin/bash
Now write this command from inside the container:
ollama pull dolphin-mixtral
This will download all necessary dependencies.
To start using the model, execute:
ollama run dolphin-mixtral
Test the model with a prompt:
>>> How does blockchain technology work?
If the response is generated, the model is functioning correctly.
To access Dolphin-Mixtral through a browser-based UI, deploy Open WebUI:
docker run -d --name ollama-ui -p 5050:8080 -e
OLLAMA_BASE_URL=http://<YOUR-VM-IP>:11434 -v
open-webui:/app/backend/data --restart
always ghcr.io/open-webui/open-webui:main
Now, navigate to http://<YOUR-VM-IP>:5050 to interact with the model via a user-friendly interface.
Deploying Dolphin-Mixtral on an Azure VM using Docker & Ollama ensures efficient performance in an isolated environment. Whether you prefer CLI based interactions or a web UI, this setup offers a seamless AI deployment experience.
Ready to transform your business with our technology solutions? Contact Us today to Leverage Our AI/ML Expertise.