diff --git a/doc/config-reference/ch_imageservice.xml b/doc/config-reference/ch_imageservice.xml
index a49ecce259..3e410d4456 100644
--- a/doc/config-reference/ch_imageservice.xml
+++ b/doc/config-reference/ch_imageservice.xml
@@ -44,6 +44,7 @@
+
diff --git a/doc/config-reference/image-service/section_image-service-ISO-support.xml b/doc/config-reference/image-service/section_image-service-ISO-support.xml
new file mode 100644
index 0000000000..ba0281553f
--- /dev/null
+++ b/doc/config-reference/image-service/section_image-service-ISO-support.xml
@@ -0,0 +1,44 @@
+
+
+ Support for ISO images
+ You can load ISO images into the Image Service. You can
+ subsequently boot an ISO image using Compute.
+
+ To load an ISO image to an Image Service data
+ store
+
+ Obtain the ISO image. For example,
+ ubuntu-13.04-server-amd64.iso.
+
+
+ In the Image Service, run the following
+ command:
+ $ glance image-create --name ubuntu.iso \
+ --is-public=True --container-format=bare \
+ --disk-format=iso < ubuntu-13.04-server-amd64.iso
+ In this command, ubuntu.iso is
+ the name for the ISO image after it is loaded to the
+ Image Service, and
+ ubuntu-13.04-server-amd64.iso
+ is the name of the source ISO image.
+
+
+ Optionally, confirm the upload in Compute.
+ Run this command:
+ $ nova image-list
+
+
+
+ To boot an instance from an ISO image
+
+ Run this command:
+ $ nova boot --image ubuntu.iso \
+ --flavor 1 instance_name
+ In this command, ubuntu.iso is
+ the ISO image, and instance_name is
+ the name of the new instance.
+
+
+