itamae-plugin-recipe-docker 0.2.2 → 0.2.3
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 +5 -5
- data/CHANGELOG.md +34 -0
- data/lib/itamae/plugin/recipe/docker/install.rb +4 -1
- data/lib/itamae/plugin/recipe/docker/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 72dd1aba9afe77c98665da5b886beef45e84f934855af02bc8683bd7719814a7
|
|
4
|
+
data.tar.gz: 06204cbc067c712f834f42a4967587e7275ddf3b91e37583c06254dde09db932
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46d3878436b4c61386437e90f32e4511e73e0b1daaf27a7031b9159886fc29b2082252f143910416bcc160edf14062e2d8939a26bbe398a252c419eab2d41381
|
|
7
|
+
data.tar.gz: 79547faea384fbf1a2453c9ac8b1b66484ccd57759c645f3e9523de3027f746fd33da73a71629d335df8b59bba486aced90a989383a632c4595a2adf298cae1a
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## [v0.2.2](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.2.2) (2016-05-07)
|
|
4
|
+
[Full Changelog](https://github.com/k0kubun/itamae-plugin-recipe-docker/compare/v0.2.1...v0.2.2)
|
|
5
|
+
|
|
6
|
+
**Merged pull requests:**
|
|
7
|
+
|
|
8
|
+
- Support Debian Jessie. [\#4](https://github.com/k0kubun/itamae-plugin-recipe-docker/pull/4) ([nishidayuya](https://github.com/nishidayuya))
|
|
9
|
+
|
|
10
|
+
## [v0.2.1](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.2.1) (2016-05-02)
|
|
11
|
+
[Full Changelog](https://github.com/k0kubun/itamae-plugin-recipe-docker/compare/v0.2.0...v0.2.1)
|
|
12
|
+
|
|
13
|
+
**Closed issues:**
|
|
14
|
+
|
|
15
|
+
- not work `docker::install` [\#2](https://github.com/k0kubun/itamae-plugin-recipe-docker/issues/2)
|
|
16
|
+
|
|
17
|
+
**Merged pull requests:**
|
|
18
|
+
|
|
19
|
+
- Remove calling 'apt-get update'. [\#3](https://github.com/k0kubun/itamae-plugin-recipe-docker/pull/3) ([nishidayuya](https://github.com/nishidayuya))
|
|
20
|
+
|
|
21
|
+
## [v0.2.0](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.2.0) (2016-02-06)
|
|
22
|
+
[Full Changelog](https://github.com/k0kubun/itamae-plugin-recipe-docker/compare/v0.1.1...v0.2.0)
|
|
23
|
+
|
|
24
|
+
**Closed issues:**
|
|
25
|
+
|
|
26
|
+
- Suggestion about `docker` group to use docker client without sudo. [\#1](https://github.com/k0kubun/itamae-plugin-recipe-docker/issues/1)
|
|
27
|
+
|
|
28
|
+
## [v0.1.1](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.1.1) (2015-09-25)
|
|
29
|
+
[Full Changelog](https://github.com/k0kubun/itamae-plugin-recipe-docker/compare/v0.1.0...v0.1.1)
|
|
30
|
+
|
|
31
|
+
## [v0.1.0](https://github.com/k0kubun/itamae-plugin-recipe-docker/tree/v0.1.0) (2015-09-25)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
|
@@ -55,6 +55,9 @@ when 'fedora', 'redhat' # and centos
|
|
|
55
55
|
|
|
56
56
|
package 'docker-engine'
|
|
57
57
|
|
|
58
|
+
when 'amazon'
|
|
59
|
+
package 'docker'
|
|
60
|
+
|
|
58
61
|
when 'gentoo'
|
|
59
62
|
execute 'emerge -av app-emulation/docker' do
|
|
60
63
|
not_if 'which docker'
|
|
@@ -75,7 +78,7 @@ when 'ubuntu'
|
|
|
75
78
|
end
|
|
76
79
|
|
|
77
80
|
else
|
|
78
|
-
|
|
81
|
+
require_relative './version'
|
|
79
82
|
abort "'#{node[:platform]}' is not supported by v#{Itamae::Plugin::Recipe::Docker::VERSION} of itamae-plugin-recipe-docker."
|
|
80
83
|
end
|
|
81
84
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: itamae-plugin-recipe-docker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Kokubun
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: itamae
|
|
@@ -75,6 +75,7 @@ extra_rdoc_files: []
|
|
|
75
75
|
files:
|
|
76
76
|
- ".gitignore"
|
|
77
77
|
- ".travis.yml"
|
|
78
|
+
- CHANGELOG.md
|
|
78
79
|
- Gemfile
|
|
79
80
|
- README.md
|
|
80
81
|
- Rakefile
|
|
@@ -104,9 +105,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
105
|
version: '0'
|
|
105
106
|
requirements: []
|
|
106
107
|
rubyforge_project:
|
|
107
|
-
rubygems_version: 2.
|
|
108
|
+
rubygems_version: 2.7.3
|
|
108
109
|
signing_key:
|
|
109
110
|
specification_version: 4
|
|
110
111
|
summary: Itamae recipe plugin to install Docker.
|
|
111
112
|
test_files: []
|
|
112
|
-
has_rdoc:
|