dockly 1.4.7 → 1.4.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dockly/build_cache/docker.rb +1 -1
- data/lib/dockly/version.rb +1 -1
- metadata +1 -1
@@ -73,7 +73,7 @@ class Dockly::BuildCache::Docker < Dockly::BuildCache::Base
|
|
73
73
|
container = image.run(["/bin/bash", "-lc", "cd #{command_directory} && #{command}"])
|
74
74
|
container.attach { |source,chunk| resp += chunk }
|
75
75
|
status = container.wait['StatusCode']
|
76
|
-
debug "`#{command}` exited with status #{status}, resulting container id: #{
|
76
|
+
debug "`#{command}` exited with status #{status}, resulting container id: #{container.id}"
|
77
77
|
[status, resp.strip, container]
|
78
78
|
end
|
79
79
|
end
|
data/lib/dockly/version.rb
CHANGED