|
| 1 | +--- |
| 2 | +title: Use containers for RAG development |
| 3 | +linkTitle: Develop your app |
| 4 | +weight: 10 |
| 5 | +keywords: python, local, development, generative ai, genai, llm, rag, ollama |
| 6 | +description: Learn how to develop your generative RAG application locally. |
| 7 | +--- |
| 8 | + |
| 9 | +## Prerequisites |
| 10 | + |
| 11 | +Complete [Containerize a RAG application](containerize.md). |
| 12 | + |
| 13 | +## Overview |
| 14 | + |
| 15 | +In this section, you'll learn how to set up a development environment to access all the services that your generative RAG application needs. This includes: |
| 16 | + |
| 17 | +- Adding a local database |
| 18 | +- Adding a local or remote LLM service |
| 19 | + |
| 20 | +> [!NOTE] |
| 21 | +> You can see more samples of containerized GenAI applications in the [GenAI Stack](https://github.com/docker/genai-stack) demo applications. |
| 22 | +
|
| 23 | +## Add a local database |
| 24 | + |
| 25 | +You can use containers to set up local services, like a database. In this section, you'll explore the database service in the `docker-compose.yaml` file. |
| 26 | + |
| 27 | +To run the database service: |
| 28 | + |
| 29 | +1. In the cloned repository's directory, open the `docker-compose.yaml` file in an IDE or text editor. |
| 30 | + |
| 31 | +2. In the `docker-compose.yaml` file, you'll see the following: |
| 32 | + |
| 33 | + ```yaml |
| 34 | + services: |
| 35 | + qdrant: |
| 36 | + image: qdrant/qdrant |
| 37 | + container_name: qdrant |
| 38 | + ports: |
| 39 | + - "6333:6333" |
| 40 | + volumes: |
| 41 | + - qdrant_data:/qdrant/storage |
| 42 | + ``` |
| 43 | +
|
| 44 | + > [!NOTE] |
| 45 | + > To learn more about Qdrant, see the [Qdrant Official Docker Image](https://hub.docker.com/r/qdrant/qdrant). |
| 46 | +
|
| 47 | +3. Start the application. Inside the `winy` directory, run the following command in a terminal. |
| 48 | + |
| 49 | + ```console |
| 50 | + $ docker compose up --build |
| 51 | + ``` |
| 52 | + |
| 53 | +4. Access the application. Open a browser and view the application at [http://localhost:8501](http://localhost:8501). You should see a simple Streamlit application. |
| 54 | + |
| 55 | +5. Stop the application. In the terminal, press `ctrl`+`c` to stop the application. |
| 56 | + |
| 57 | +## Add a local or remote LLM service |
| 58 | + |
| 59 | +The sample application supports both [Ollama](https://ollama.ai/). This guide provides instructions for the following scenarios: |
| 60 | +- Run Ollama in a container |
| 61 | +- Run Ollama outside of a container |
| 62 | + |
| 63 | +While all platforms can use any of the previous scenarios, the performance and |
| 64 | +GPU support may vary. You can use the following guidelines to help you choose the appropriate option: |
| 65 | +- Run Ollama in a container if you're on Linux, and using a native installation of the Docker Engine, or Windows 10/11, and using Docker Desktop, you |
| 66 | + have a CUDA-supported GPU, and your system has at least 8 GB of RAM. |
| 67 | +- Run Ollama outside of a container if running Docker Desktop on a Linux Machine. |
| 68 | + |
| 69 | +Choose one of the following options for your LLM service. |
| 70 | + |
| 71 | +{{< tabs >}} |
| 72 | +{{< tab name="Run Ollama in a container" >}} |
| 73 | + |
| 74 | +When running Ollama in a container, you should have a CUDA-supported GPU. While you can run Ollama in a container without a supported GPU, the performance may not be acceptable. Only Linux and Windows 11 support GPU access to containers. |
| 75 | + |
| 76 | +To run Ollama in a container and provide GPU access: |
| 77 | +1. Install the prerequisites. |
| 78 | + - For Docker Engine on Linux, install the [NVIDIA Container Toolkilt](https://github.com/NVIDIA/nvidia-container-toolkit). |
| 79 | + - For Docker Desktop on Windows 10/11, install the latest [NVIDIA driver](https://www.nvidia.com/Download/index.aspx) and make sure you are using the [WSL2 backend](/manuals/desktop/wsl/_index.md#turn-on-docker-desktop-wsl-2) |
| 80 | +2. The `docker-compose.yaml` file already contains the necessary instructions. In your own apps, you'll need to add the Ollama service in your `docker-compose.yaml`. The following is |
| 81 | + the updated `docker-compose.yaml`: |
| 82 | + |
| 83 | + ```yaml |
| 84 | + ollama: |
| 85 | + image: ollama/ollama |
| 86 | + container_name: ollama |
| 87 | + ports: |
| 88 | + - "8000:8000" |
| 89 | + deploy: |
| 90 | + resources: |
| 91 | + reservations: |
| 92 | + devices: |
| 93 | + - driver: nvidia |
| 94 | + count: 1 |
| 95 | + capabilities: [gpu] |
| 96 | + ``` |
| 97 | + |
| 98 | + > [!NOTE] |
| 99 | + > For more details about the Compose instructions, see [Turn on GPU access with Docker Compose](/manuals/compose/gpu-support.md). |
| 100 | + |
| 101 | +3. Once the Ollama container is up and running it is possible to use the `download_model.sh` inside the `tools` folder with this command: |
| 102 | + |
| 103 | + ```console |
| 104 | + . ./download_model.sh <model-name> |
| 105 | + ``` |
| 106 | + |
| 107 | +Pulling an Ollama model can take several minutes. |
| 108 | + |
| 109 | +{{< /tab >}} |
| 110 | +{{< tab name="Run Ollama outside of a container" >}} |
| 111 | + |
| 112 | +To run Ollama outside of a container: |
| 113 | + |
| 114 | +1. [Install](https://github.com/jmorganca/ollama) and run Ollama on your host |
| 115 | + machine. |
| 116 | +2. Pull the model to Ollama using the following command. |
| 117 | + |
| 118 | + ```console |
| 119 | + $ ollama pull llama2 |
| 120 | + ``` |
| 121 | + |
| 122 | +3. Remove the `ollama` service from the `docker-compose.yaml` and update properly the connection variables in `winy` service: |
| 123 | + |
| 124 | + ```diff |
| 125 | + - OLLAMA=http://ollama:11434 |
| 126 | + + OLLAMA=<your-url> |
| 127 | + ``` |
| 128 | + |
| 129 | +{{< /tab >}} |
| 130 | +{{< /tabs >}} |
| 131 | + |
| 132 | +## Run your RAG application |
| 133 | + |
| 134 | +At this point, you have the following services in your Compose file: |
| 135 | +- Server service for your main RAG application |
| 136 | +- Database service to store vectors in a Qdrant database |
| 137 | +- (optional) Ollama service to run the LLM |
| 138 | + service |
| 139 | + |
| 140 | +Once the application is running, open a browser and access the application at [http://localhost:8501](http://localhost:8501). |
| 141 | + |
| 142 | +Depending on your system and the LLM service that you chose, it may take several |
| 143 | +minutes to answer. |
| 144 | + |
| 145 | +## Summary |
| 146 | + |
| 147 | +In this section, you learned how to set up a development environment to provide |
| 148 | +access all the services that your GenAI application needs. |
| 149 | + |
| 150 | +Related information: |
| 151 | + - [Dockerfile reference](/reference/dockerfile.md) |
| 152 | + - [Compose file reference](/reference/compose-file/_index.md) |
| 153 | + - [Ollama Docker image](https://hub.docker.com/r/ollama/ollama) |
| 154 | + - [GenAI Stack demo applications](https://github.com/docker/genai-stack) |
| 155 | + |
| 156 | +## Next steps |
| 157 | + |
| 158 | +See samples of more GenAI applications in the [GenAI Stack demo applications](https://github.com/docker/genai-stack). |
0 commit comments