From 011ec950e9831bdaf3f39b0a830a98bfdf03a1cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sj=C3=B6gren?= Date: Thu, 23 Feb 2017 17:07:33 +0100 Subject: [PATCH] use docker info, as all other tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Sjögren --- tests/2_docker_daemon_configuration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/2_docker_daemon_configuration.sh b/tests/2_docker_daemon_configuration.sh index 9d27069..cdd39cd 100644 --- a/tests/2_docker_daemon_configuration.sh +++ b/tests/2_docker_daemon_configuration.sh @@ -205,7 +205,7 @@ fi # 2.21 check_2_21="2.21 - Avoid experimental features in production" -if docker version --format '{{ .Server.Experimental }}' | grep 'false' 2>/dev/null 1>&2; then +if docker info 2>/dev/null | grep -e "Experimental:\s*false*" 2>/dev/null 1>&2; then pass "$check_2_21" else warn "$check_2_21"