We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5555c37 + 26f80fb commit 9120d42Copy full SHA for 9120d42
tests/6_docker_security_operations.sh
@@ -20,7 +20,7 @@ check_6_1() {
20
images=$(docker images -q | sort -u | wc -l | awk '{print $1}')
21
active_images=0
22
23
- for c in $(docker inspect --format "{{.Image}}" "$(docker ps -qa)" 2>/dev/null); do
+ for c in $(docker inspect --format "{{.Image}}" $(docker ps -qa) 2>/dev/null); do
24
if docker images --no-trunc -a | grep "$c" > /dev/null ; then
25
active_images=$(( active_images += 1 ))
26
fi
0 commit comments