Updated all Docker image references in docker-compose.yml, docker-compose-cpu.yml, and docker-compose.gpu.yml to explicitly use the docker.io registry prefix. This change ensures consistent image resolution and avoids ambiguity in environments where multiple registries may be configured.
8 lines
222 B
YAML
8 lines
222 B
YAML
services:
|
|
openrag-backend:
|
|
image: docker.io/langflowai/openrag-backend:${OPENRAG_VERSION:-latest}
|
|
environment:
|
|
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
gpus: all
|
|
|