File tree 5 files changed +9
-5
lines changed 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -33,4 +33,5 @@ services:
33
33
build :
34
34
context : GenAIComps
35
35
dockerfile : comps/third_parties/vllm/src/Dockerfile.amd_gpu
36
+ extends : visualqna
36
37
image : ${REGISTRY:-opea}/vllm-rocm:${TAG:-latest}
Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ ip_address=$(hostname -I | awk '{print $1}')
20
20
function build_docker_images() {
21
21
cd $WORKPATH /docker_image_build
22
22
git clone --depth 1 --branch main https://github.com/opea-project/GenAIComps.git
23
- docker compose -f build.yaml build --no-cache > ${LOG_PATH} /docker_image_build.log
23
+ service_list=" visualqna visualqna-ui lvm nginx"
24
+ docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH} /docker_image_build.log
24
25
25
26
git clone https://github.com/HabanaAI/vllm-fork.git
26
27
cd ./vllm-fork/
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ ip_address=$(hostname -I | awk '{print $1}')
19
19
function build_docker_images() {
20
20
cd $WORKPATH /docker_image_build
21
21
git clone --depth 1 --branch main https://github.com/opea-project/GenAIComps.git
22
- docker compose -f build.yaml build --no-cache > ${LOG_PATH} /docker_image_build.log
22
+ service_list=" visualqna visualqna-ui lvm nginx"
23
+ docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH} /docker_image_build.log
23
24
24
25
docker pull opea/vllm:latest
25
26
docker tag opea/vllm:latest opea/vllm:${TAG}
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ function build_docker_images() {
32
32
git clone --depth 1 --branch ${opea_branch} https://github.com/opea-project/GenAIComps.git
33
33
34
34
echo " Build all the images with --no-cache, check docker_image_build.log for details..."
35
- docker compose -f build.yaml build --no-cache > ${LOG_PATH} /docker_image_build.log
35
+ service_list=" visualqna visualqna-ui lvm nginx"
36
+ docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH} /docker_image_build.log
36
37
37
38
docker pull ghcr.io/huggingface/tgi-gaudi:2.0.6
38
39
docker images && sleep 1s
Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ function build_docker_images() {
32
32
git clone --depth 1 --branch ${opea_branch} https://github.com/opea-project/GenAIComps.git
33
33
34
34
echo " Build all the images with --no-cache, check docker_image_build.log for details..."
35
- docker compose -f build.yaml build --no-cache > ${LOG_PATH} /docker_image_build.log
35
+ service_list=" visualqna visualqna-ui lvm nginx"
36
+ docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH} /docker_image_build.log
36
37
37
- docker pull ghcr.io/huggingface/text-generation-inference:2.4.0-intel-cpu
38
38
docker images && sleep 1s
39
39
}
40
40
You can’t perform that action at this time.
0 commit comments