Skip to content

Commit

Permalink
Alphabetization fixes for #46 merge
Browse files Browse the repository at this point in the history
  • Loading branch information
bflad committed Jan 20, 2014
1 parent 2b9fda6 commit 240cd86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -426,9 +426,9 @@ Attribute | Description | Type | Default
dockerfile (*DEPRECATED*) | Dockerfile to build image | String | nil
image_url (*DEPRECATED*) | URL to grab image | String | nil
path (*DEPRECATED*) | Local path to files | String | nil
rm | Remove intermediate containers after a successful build | TrueClass, FalseClass | false
source | Source dockerfile/directory/URL to build | String | nil
tag | Optional tag for image | String | nil
rm | Remove intermediate containers after a successful build | TrueClass, FalseClass | false

Build image from Dockerfile:

Expand Down
2 changes: 1 addition & 1 deletion resources/image.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
attribute :path, :kind_of => [String]
attribute :registry, :kind_of => [String]
attribute :repository, :kind_of => [String]
attribute :rm, :kind_of => [TrueClass, FalseClass], :default => false
attribute :source, :kind_of => [String]
attribute :tag, :kind_of => [String]
attribute :rm, :kind_of => [TrueClass, FalseClass], :default => false

0 comments on commit 240cd86

Please sign in to comment.