Merge pull request #6572 from dataease/pr@dev_healthcheck

refactor: 修改healthcheck文案
This commit is contained in:
fit2cloudrd 2023-11-07 17:31:14 +08:00 committed by GitHub
commit 3692f451a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ function _healthcheck() {
container_name=$(grep "container_name" $DE_BASE/dataease/docker-compose.yml | awk -F': ' '{print $2}')
sleep 1
if [ -z $(docker ps --filter "name=$container_name" -q) ];then
echo "未找到容器 $container_name,请检查配置文件。"
echo "未找到容器 $container_name。"
exit 1
fi