diff --git a/docs/docs/get-started/docker.mdx b/docs/docs/get-started/docker.mdx index 14147e0f..9de7dd38 100644 --- a/docs/docs/get-started/docker.mdx +++ b/docs/docs/get-started/docker.mdx @@ -116,16 +116,6 @@ The following variables are required or recommended: 3. Deploy the OpenRAG containers locally using the appropriate Docker Compose configuration for your environment. - * **CPU-only deployment** (default): If your host machine doesn't have NVIDIA GPU support, use the base `docker-compose.yml` file. - - ```bash title="Docker" - docker compose up -d - ``` - - ```bash title="Podman" - podman compose up -d - ``` - * **GPU-accelerated deployment**: If your host machine has an NVIDIA GPU with CUDA support and compatible NVIDIA drivers, use the base `docker-compose.yml` file with the `docker-compose.gpu.yml` override. ```bash title="Docker" @@ -136,6 +126,16 @@ The following variables are required or recommended: podman compose -f docker-compose.yml -f docker-compose.gpu.yml up -d ``` + * **CPU-only deployment** (default): If your host machine doesn't have NVIDIA GPU support, use the base `docker-compose.yml` file. + + ```bash title="Docker" + docker compose up -d + ``` + + ```bash title="Podman" + podman compose up -d + ``` + 4. Wait for the OpenRAG containers to start, and then confirm that all containers are running: ```bash title="Docker"