fix(docker): Use localrecall main tag instead of master

Signed-off-by: Richard Palethorpe <io@richiejp.com>
This commit is contained in:
Richard Palethorpe
2025-04-07 11:25:35 +01:00
parent 34caeea081
commit 6464a33912
2 changed files with 10 additions and 7 deletions

View File

@@ -38,7 +38,7 @@ services:
count: 1 count: 1
capabilities: [gpu] capabilities: [gpu]
localrecall: localrecall:
image: quay.io/mudler/localrecall:master image: quay.io/mudler/localrecall:main
ports: ports:
- 8080 - 8080
environment: environment:

View File

@@ -5,16 +5,16 @@ services:
# Available images with CUDA, ROCm, SYCL, Vulkan # Available images with CUDA, ROCm, SYCL, Vulkan
# Image list (quay.io): https://quay.io/repository/go-skynet/local-ai?tab=tags # Image list (quay.io): https://quay.io/repository/go-skynet/local-ai?tab=tags
# Image list (dockerhub): https://hub.docker.com/r/localai/localai # Image list (dockerhub): https://hub.docker.com/r/localai/localai
image: localai/localai:latest-cpu image: local-ai
command: command:
# - rombo-org_rombo-llm-v3.0-qwen-32b # minimum suggested model - rombo-org_rombo-llm-v3.0-qwen-32b # minimum suggested model
- arcee-agent # (smaller) - arcee-agent # (smaller)
- granite-embedding-107m-multilingual - granite-embedding-107m-multilingual
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/readyz"] test: ["CMD", "curl", "-f", "http://localhost:8080/readyz"]
interval: 10s interval: 60s
timeout: 20m timeout: 10m
retries: 20 retries: 120
ports: ports:
- 8081:8080 - 8081:8080
environment: environment:
@@ -23,6 +23,9 @@ services:
volumes: volumes:
- ./volumes/models:/build/models:cached - ./volumes/models:/build/models:cached
- ./volumes/images:/tmp/generated/images - ./volumes/images:/tmp/generated/images
devices:
- /dev/dri
# decomment the following piece if running with Nvidia GPUs # decomment the following piece if running with Nvidia GPUs
# deploy: # deploy:
# resources: # resources:
@@ -32,7 +35,7 @@ services:
# count: 1 # count: 1
# capabilities: [gpu] # capabilities: [gpu]
localrecall: localrecall:
image: quay.io/mudler/localrecall:master image: quay.io/mudler/localrecall:main
ports: ports:
- 8080 - 8080
environment: environment: