1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

update doc string

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
Brian Goff 2016-01-29 14:28:30 -05:00
parent a4ce361ac8
commit 9c09a79ba5
2 changed files with 4 additions and 4 deletions

View file

@ -173,8 +173,8 @@ func (b *Builder) Cancel() {
}) })
} }
// BuildFromConfig will do build directly from parameter 'changes', // BuildFromConfig builds directly from `changes`, treating it as if it were the contents of a Dockerfile
// which is treated like it is coming from a Dockerfile. It will: // It will:
// - Call parse.Parse() to get an AST root for the concatenated Dockerfile entries. // - Call parse.Parse() to get an AST root for the concatenated Dockerfile entries.
// - Do build by calling builder.dispatch() to call all entries' handling routines // - Do build by calling builder.dispatch() to call all entries' handling routines
// //

View file

@ -1013,8 +1013,8 @@ func (daemon *Daemon) changes(container *container.Container) ([]archive.Change,
return container.RWLayer.Changes() return container.RWLayer.Changes()
} }
// TagImage creates a tag in the repository and with the name specified by newTag, // TagImage creates the tag specified by newTag, pointing to the image named
// pointing to the image named imageName (alternatively, imageName can also be an image ID). // imageName (alternatively, imageName can also be an image ID).
func (daemon *Daemon) TagImage(newTag reference.Named, imageName string) error { func (daemon *Daemon) TagImage(newTag reference.Named, imageName string) error {
imageID, err := daemon.GetImageID(imageName) imageID, err := daemon.GetImageID(imageName)
if err != nil { if err != nil {