From 240cd8632c257b7c790b206f873bb446e479df4c Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Mon, 20 Jan 2014 00:22:25 -0500 Subject: [PATCH] Alphabetization fixes for #46 merge --- README.md | 2 +- resources/image.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a74917adf8..226cbe5be3 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/resources/image.rb b/resources/image.rb index 8b37f6e16c..94d6b10af2 100644 --- a/resources/image.rb +++ b/resources/image.rb @@ -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