diff --git a/404.html b/404.html index 8fea2608..f2a5ffbb 100644 --- a/404.html +++ b/404.html @@ -4,7 +4,7 @@
Status: running
Endpoint: http://127.0.0.1:5001
Docs: http://127.0.0.1:5001/docs
PID: 27746
Deploy the OpenRAG containers locally using the appropriate Docker Compose file for your environment. -Both files deploy the same services.
+Deploy the OpenRAG containers locally using the appropriate Docker Compose configuration for your environment.
docker-compose.yml: If your host machine has an NVIDIA GPU with CUDA support and compatible NVIDIA drivers, you can use this file to deploy OpenRAG with accelerated processing.
docker compose build
docker compose up -d
podman compose build
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.
docker compose -f docker-compose.yml -f docker-compose.gpu.yml up -d
podman compose -f docker-compose.yml -f docker-compose.gpu.yml up -d
docker-compose-cpu.yml: If your host machine doesn't have NVIDIA GPU support, use this file for a CPU-only OpenRAG deployment.
docker compose -f docker-compose-cpu.yml up -d
podman compose -f docker-compose-cpu.yml up -d
CPU-only deployment (default): If your host machine doesn't have NVIDIA GPU support, use the base docker-compose.yml file.
docker compose up -d
podman compose up -d
Verify that the value of the LANGFLOW_SUPERUSER environment variable is correct.
For more information about this variable and how this variable controls Langflow access, see Langflow settings.
Increase Docker memory allocation or use docker-compose-cpu.yml to deploy OpenRAG.
+Increase Docker memory allocation or use the CPU-only deployment (base docker-compose.yml without GPU override) to reduce memory usage.
If you're using Podman on macOS, you might need to increase VM memory on your Podman machine. This example increases the machine size to 8 GB of RAM, which should be sufficient to run OpenRAG.
diff --git a/tui/index.html b/tui/index.html index 11aceb93..3a625e5f 100644 --- a/tui/index.html +++ b/tui/index.html @@ -4,7 +4,7 @@