rake_docker 2.4.0.pre.4 → 2.4.0.pre.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/rake_docker/container.rb +10 -3
- data/lib/rake_docker/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a01f075a4caa3f6cf193bf16e376f45123bdc4b36ed284bbda064811d99a6e5
|
4
|
+
data.tar.gz: 39b6da5b20bd634f3e3d5b357d712dd53b6c65a1fa86eb06db5e31443da54b9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de8b4712e8f8b71203ceeec698f6cd3e7f1ed13974dbdb6b98f0578ce52bdf3cb4e7e1aafc563ce347d1154883fd8f64f5585e2dde686f0746a582eabd2234f9
|
7
|
+
data.tar.gz: 49c877ad8b2d2d419a8c01597dd1c0067921ae62d5751ba3249475f1faad126126a32be3c77e68177f2f12f03d35cb225dea143068f9302faf946e1cc66415ae
|
data/Gemfile.lock
CHANGED
@@ -62,8 +62,8 @@ module RakeDocker
|
|
62
62
|
puts "Image #{image} pulled. Continuing."
|
63
63
|
end
|
64
64
|
|
65
|
-
def creating_container(
|
66
|
-
puts
|
65
|
+
def creating_container(name, image)
|
66
|
+
puts "Creating #{name} container from image #{image}..."
|
67
67
|
end
|
68
68
|
|
69
69
|
def container_created(container)
|
@@ -257,7 +257,14 @@ module RakeDocker
|
|
257
257
|
if container
|
258
258
|
reporter.container_exists(container)
|
259
259
|
reporter.stopping_container(container)
|
260
|
-
container.stop
|
260
|
+
updated = container.stop
|
261
|
+
require 'pp'
|
262
|
+
puts "Original ***************"
|
263
|
+
pp container
|
264
|
+
puts "Updated ***************"
|
265
|
+
pp updated
|
266
|
+
puts "List ***************"
|
267
|
+
pp Docker::Container.all
|
261
268
|
reporter.container_stopped(container)
|
262
269
|
reporter.deleting_container(container)
|
263
270
|
container.delete
|
data/lib/rake_docker/version.rb
CHANGED