From 91c1fda782e129c930d545f39a6c5289b3752fb9 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 11 Oct 2023 11:21:44 +0200 Subject: [PATCH] fix --- .github/workflows/test-only.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-only.yml b/.github/workflows/test-only.yml index 0d5decc3..055d6a75 100644 --- a/.github/workflows/test-only.yml +++ b/.github/workflows/test-only.yml @@ -88,14 +88,14 @@ jobs: - name: Test changedetection.io container starts+runs basically without error run: | - docker run -p 5556:5000 --name test-changedetectionio -d test-changedetectionio + docker run --name test-changedetectionio -p 5556:5000 -d test-changedetectionio sleep 3 # Should return 0 (no error) when grep finds it curl -s http://localhost:5556 |grep -q checkbox-uuid # and IPv6 curl -s -g -6 "http://[::1]:5556"|grep -q checkbox-uuid - docker kill --name test-changedetectionio + docker kill test-changedetectionio - name: Test changedetection.io SIGTERM and SIGINT signal shutdown run: |