From 1f2f98fb2193987190d7f495f416c90bb3c8aa39 Mon Sep 17 00:00:00 2001 From: limiting-factor Date: Mon, 2 Sep 2024 11:45:26 +0200 Subject: [PATCH] lib: reduce GitLab noise The absence of the test-gitlab container will display Error response from daemon: No such container: test-gitlab which can be mistaken as an actual error where in fact it should be ignored. --- lib/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib.sh b/lib/lib.sh index a7471b8..3e21377 100644 --- a/lib/lib.sh +++ b/lib/lib.sh @@ -217,7 +217,7 @@ function start_gitlab() { } function stop_gitlab() { - docker rm -f test-gitlab + docker rm -f test-gitlab >&/dev/null } function stop_forgejo() {