From f52d724e74af05e659a672fae18e214f5279ed42 Mon Sep 17 00:00:00 2001 From: Lkeme <19500576+lkeme@users.noreply.github.com> Date: Tue, 31 Oct 2023 14:32:08 +0800 Subject: [PATCH] [fix] docker sh error --- docker/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 5a4853b..d6b4017 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -109,7 +109,7 @@ case ${VERSION} in if [ "$CAPTCHA" == "1" ]; then echo -e "\n ======== \n ${Info} ${GreenBG} 正在使用验证码服务 ${Font} \n ======== \n" echo -e "\n ======== \n ${Info} ${GreenBG} 验证码服务地址:http://${CAPTCHA_HOST}:${CAPTCHA_PORT} ${Font} \n ======== \n" - (cd ./captcha && php -S $CAPTCHA_HOST:$CAPTCHA_PORT &) ; (cd .. && php app.php m:a) + (cd ./captcha && php -S $CAPTCHA_HOST:$CAPTCHA_PORT &) ; (php app.php m:a) else php app.php m:a fi