fix: update image registry (#1353)

This commit is contained in:
yetone
2025-02-23 01:54:01 +08:00
committed by GitHub
parent 7a49673023
commit ea07d45c1c
2 changed files with 3 additions and 3 deletions

View File

@@ -103,5 +103,5 @@ lua-typecheck:
.PHONY: build-image
build-image:
docker build -t ghcr.io/yetone/avante-rag-service:0.0.3 -f py/rag-service/Dockerfile py/rag-service
docker push ghcr.io/yetone/avante-rag-service:0.0.3
docker build -t quay.io/yetoneful/avante-rag-service:0.0.3 -f py/rag-service/Dockerfile py/rag-service
docker push quay.io/yetoneful/avante-rag-service:0.0.3

View File

@@ -6,7 +6,7 @@ local M = {}
local container_name = "avante-rag-service"
function M.get_rag_service_image() return "ghcr.io/yetone/avante-rag-service:0.0.3" end
function M.get_rag_service_image() return "quay.io/yetoneful/avante-rag-service:0.0.3" end
function M.get_rag_service_port() return 20250 end