diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-17 15:36:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 15:36:02 -0400 |
commit | 70f6cf7ffa72717cb15adcf8b8e024f87e445c89 (patch) | |
tree | 988b89d6d090559dd21dae6f1805bac072beb4f3 /pkg/api/server/register_images.go | |
parent | fd184fa4a1d0bd7797de1fb062c90e1a6d56bd1e (diff) | |
parent | 65c3a56602f50856c6d4b8df212f046d53ba52c1 (diff) | |
download | podman-70f6cf7ffa72717cb15adcf8b8e024f87e445c89.tar.gz podman-70f6cf7ffa72717cb15adcf8b8e024f87e445c89.tar.bz2 podman-70f6cf7ffa72717cb15adcf8b8e024f87e445c89.zip |
Merge pull request #6634 from baude/v2buildfixes
fix misc remote build issues
Diffstat (limited to 'pkg/api/server/register_images.go')
-rw-r--r-- | pkg/api/server/register_images.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/api/server/register_images.go b/pkg/api/server/register_images.go index 83584d0f3..754cb1b75 100644 --- a/pkg/api/server/register_images.go +++ b/pkg/api/server/register_images.go @@ -410,7 +410,7 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error { // swagger:operation POST /build compat buildImage // --- // tags: - // - images + // - images (compat) // summary: Create image // description: Build an image from the given Dockerfile(s) // parameters: @@ -425,7 +425,7 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error { // name: t // type: string // default: latest - // description: A name and optional tag to apply to the image in the `name:tag` format. + // description: A name and optional tag to apply to the image in the `name:tag` format. If you omit the tag the default latest value is assumed. You can provide several t parameters. // - in: query // name: extrahosts // type: string @@ -1211,7 +1211,7 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error { // name: t // type: string // default: latest - // description: A name and optional tag to apply to the image in the `name:tag` format. + // description: A name and optional tag to apply to the image in the `name:tag` format. If you omit the tag the default latest value is assumed. You can provide several t parameters. // - in: query // name: extrahosts // type: string |