File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
docker_compose/intel/cpu/xeon Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ services:
106
106
HF_HUB_OFFLINE : ${HF_HUB_OFFLINE:-0}
107
107
VLLM_CPU_KVCACHE_SPACE : 40
108
108
healthcheck :
109
- test : ["CMD-SHELL", "curl -f http://vllm-service:80 /health || exit 1"]
109
+ test : ["CMD-SHELL", "curl -f http://$host_ip:9009 /health || exit 1"]
110
110
interval : 10s
111
111
timeout : 10s
112
112
retries : 100
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ function start_services() {
43
43
source set_env.sh
44
44
45
45
# Start Docker Containers
46
- docker compose -f compose.yaml -f compose.telemetry.yaml -f compose.perf.yaml up -d --quiet-pull > ${LOG_PATH} /start_services_with_compose.log
46
+ docker compose -f compose.yaml -f compose.telemetry.yaml up -d --quiet-pull > ${LOG_PATH} /start_services_with_compose.log
47
47
n=0
48
48
until [[ " $n " -ge 100 ]]; do
49
49
docker logs vllm-service > ${LOG_PATH} /vllm_service_start.log 2>&1
@@ -163,7 +163,7 @@ function validate_frontend() {
163
163
164
164
function stop_docker() {
165
165
cd $WORKPATH /docker_compose/intel/cpu/xeon
166
- docker compose -f compose.yaml -f compose.telemetry.yaml -f compose.perf.yaml down
166
+ docker compose -f compose.yaml -f compose.telemetry.yaml down
167
167
}
168
168
169
169
function main() {
You can’t perform that action at this time.
0 commit comments