capistrano-docker-compose 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ae0d1385bcb2a3186de8f312a414a9c034621a7
|
|
4
|
+
data.tar.gz: ce82a3924eaa6a1f0f54c1579a3a8896ec203f18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64dddf55f7e57abfc73408f107f2a517ff7e12311a4b6aba19889383c776b13e64b8ce1438539b6378e831219fa8d2da20eec54cb31125139d1a307566819715
|
|
7
|
+
data.tar.gz: d1fff407f0aa64fb0ee0b6ba9521e4ac48bf72e90860c08e5d977e779a700e1ced7b98884b177e75676b76b8ad555754217ff4d880388e014908b82fc41ed484
|
|
@@ -50,7 +50,7 @@ namespace :deploy do
|
|
|
50
50
|
containers = capture :'docker-compose', 'ps', '-q'
|
|
51
51
|
unless containers.empty?
|
|
52
52
|
info "Purging containers of previous release at #{fetch(:previous_release_path)}"
|
|
53
|
-
execute :'docker-compose', 'down'
|
|
53
|
+
execute :'docker-compose', 'down', '--remove-orphans'
|
|
54
54
|
end
|
|
55
55
|
end
|
|
56
56
|
end
|
|
@@ -62,7 +62,7 @@ namespace :deploy do
|
|
|
62
62
|
on roles(fetch(:docker_compose_roles)) do
|
|
63
63
|
within release_path do
|
|
64
64
|
info "Purging failed containers at #{release_path}"
|
|
65
|
-
execute :'docker-compose', 'down'
|
|
65
|
+
execute :'docker-compose', 'down', '--remove-orphans'
|
|
66
66
|
end
|
|
67
67
|
within fetch(:previous_release_path) do
|
|
68
68
|
containers = capture :'docker-compose', 'ps', '-q'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-docker-compose
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ain Tohvri
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02
|
|
11
|
+
date: 2017-10-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
67
67
|
version: '0'
|
|
68
68
|
requirements: []
|
|
69
69
|
rubyforge_project:
|
|
70
|
-
rubygems_version: 2.
|
|
70
|
+
rubygems_version: 2.6.12
|
|
71
71
|
signing_key:
|
|
72
72
|
specification_version: 4
|
|
73
73
|
summary: Docker Compose specific tasks for Capistrano.
|