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.
1 parent 7bbd2e4 commit 87f756cCopy full SHA for 87f756c
controls/container_images.rb
@@ -178,7 +178,7 @@
178
ref 'caching and apt-get update', url: 'https://github.com/moby/moby/issues/3313'
179
180
docker.images.ids.each do |id|
181
- describe command("docker history #{id}| grep -e 'update'") do
+ describe command("docker --no-trunc history #{id}| grep -e 'update'") do
182
its('stdout') { should eq '' }
183
end
184
@@ -220,7 +220,7 @@
220
ref 'Best practices for writing Dockerfiles', url: 'https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/'
221
222
223
- describe command("docker history #{id}| grep 'ADD'") do
+ describe command("docker --no-trunc history #{id}| grep 'ADD'") do
224
225
226
0 commit comments