docker_deploy 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/docker_deploy/task.rb +2 -0
- data/lib/docker_deploy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6ecb0e145a8a035e682723c67deb36e908de5ad
|
4
|
+
data.tar.gz: 7a4a43a110e5fa7d3b338e710cbbd89e8a1d11c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 685ffec9fcb8743c058c09aa2fd0f108bdd1a7d2a578e9ad77a0ccad79bfb0708005ff5357c18838495a7398ecf36e85377f16ad4b91ab6e60ab9d66dbf1c4b5
|
7
|
+
data.tar.gz: e8db5e0fdc5cc792836487f8ff3a044e3eeda3e211d5908424ee7abfae81b61e22f7673e63b59fe21b8bdea8c2dd352ad27df4ab1bffd1cc205b152f848c8572
|
data/lib/docker_deploy/task.rb
CHANGED
@@ -37,6 +37,8 @@ module DockerDeploy
|
|
37
37
|
desc "Start the application in a container using the latest image."
|
38
38
|
task :start do
|
39
39
|
stage.run "docker run -d #{stage.port_mappings} #{stage.link_mappings} #{stage.options} --name #{context.container} #{context.image}:latest"
|
40
|
+
|
41
|
+
puts "\n\nStarted: #{stage.host}\n"
|
40
42
|
end
|
41
43
|
|
42
44
|
desc "Run migrations in the latest image."
|