Skip to content

Commit

Permalink
fix: stderr of executed docker command ignored again
Browse files Browse the repository at this point in the history
  • Loading branch information
augi committed Aug 9, 2023
1 parent 129275f commit 1c4d194
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class DockerExecutor {
def finalArgs = [settings.dockerExecutable.get()]
finalArgs.addAll(args)
e.commandLine finalArgs
e.errorOutput = os
e.standardOutput = os
e.ignoreExitValue = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Fixture implements AutoCloseable {
services:
web:
image: nginx:stable
command: bash -c "sleep 5 && nginx -g 'daemon off;'"
command: bash -c " echo 'starting nginx' && sleep 5 && nginx -g 'daemon off;'"
ports:
- 80
''')
Expand Down

0 comments on commit 1c4d194

Please sign in to comment.