File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ function build_docker_images() {
24
24
echo " GenAIComps test commit is $( git rev-parse HEAD) "
25
25
docker build --no-cache -t ${REGISTRY} /comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
26
26
popd && sleep 1s
27
+ git clone https://github.com/vllm-project/vllm.git && cd vllm
28
+ VLLM_VER=" v0.8.3"
29
+ echo " Check out vLLM tag ${VLLM_VER} "
30
+ git checkout ${VLLM_VER} & > /dev/null
31
+ cd ../
27
32
28
33
service_list=" visualqna visualqna-ui lvm nginx vllm"
29
34
docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH} /docker_image_build.log
@@ -32,11 +37,8 @@ function build_docker_images() {
32
37
33
38
function start_services() {
34
39
cd $WORKPATH /docker_compose/intel/cpu/xeon/
35
-
36
40
source ./set_env.sh
37
-
38
41
sed -i " s/backend_address/$ip_address /g" $WORKPATH /ui/svelte/.env
39
-
40
42
# Start Docker Containers
41
43
docker compose up -d > ${LOG_PATH} /start_services_with_compose.log
42
44
You can’t perform that action at this time.
0 commit comments