From 8a0b7bf8e8aadde1ea473d800bcfbfa4e510d9fa Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Fri, 10 Jun 2022 22:29:25 +0800 Subject: [PATCH] trigger workflow --- .github/workflows/docker-crawlab.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-crawlab.yml b/.github/workflows/docker-crawlab.yml index 9a0dff0a..24963b5e 100644 --- a/.github/workflows/docker-crawlab.yml +++ b/.github/workflows/docker-crawlab.yml @@ -146,12 +146,13 @@ jobs: run: | docker run -d --rm --name crawlab_master \ -e CRAWLAB_NODE_MASTER=Y \ + -p 8080:8080 \ image sleep 30 docker ps docker logs crawlab_master - res=`docker exec crawlab_master curl http://localhost:8000/system-info -s` - echo $res + res=`curl http://localhost:8080/api/system-info -s` + echo "res: ${res}" if [[ $res =~ "success" ]]; then : else