瀏覽代碼

Merge pull request #27928 from erikh/fix-docs

api/types/client.go: documentation fix for ImageImportSource
Vincent Demeester 8 年之前
父節點
當前提交
1d40e9cb18
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      api/types/client.go

+ 2 - 2
api/types/client.go

@@ -192,8 +192,8 @@ type ImageCreateOptions struct {
 
 // ImageImportSource holds source information for ImageImport
 type ImageImportSource struct {
-	Source     io.Reader // Source is the data to send to the server to create this image from (mutually exclusive with SourceName)
-	SourceName string    // SourceName is the name of the image to pull (mutually exclusive with Source)
+	Source     io.Reader // Source is the data to send to the server to create this image from. You must set SourceName to "-" to leverage this.
+	SourceName string    // SourceName is the name of the image to pull. Set to "-" to leverage the Source attribute.
 }
 
 // ImageImportOptions holds information to import images from the client host.