summaryrefslogtreecommitdiff
path: root/cmd/podman/varlink
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-06-03 20:58:13 +0200
committerGitHub <noreply@github.com>2019-06-03 20:58:13 +0200
commite41162076a2668fa93c61dadaf72d285590c4c6e (patch)
tree573d5d0832cd316eedadb68748b936fe27ef428c /cmd/podman/varlink
parent7c465d4d9738f25546d61b915d63bf8fff0ed14d (diff)
parent2df462024bc59fcf117e3c68bd94b667aa0cecd0 (diff)
downloadpodman-e41162076a2668fa93c61dadaf72d285590c4c6e.tar.gz
podman-e41162076a2668fa93c61dadaf72d285590c4c6e.tar.bz2
podman-e41162076a2668fa93c61dadaf72d285590c4c6e.zip
Merge pull request #3081 from baude/remotecommit
podman remote-client commit
Diffstat (limited to 'cmd/podman/varlink')
-rw-r--r--cmd/podman/varlink/io.podman.varlink4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink
index ed7b49c68..5b3d5ae4c 100644
--- a/cmd/podman/varlink/io.podman.varlink
+++ b/cmd/podman/varlink/io.podman.varlink
@@ -802,8 +802,8 @@ method DeleteUnusedImages() -> (images: []string)
# attributes: _CMD, ENTRYPOINT, ENV, EXPOSE, LABEL, ONBUILD, STOPSIGNAL, USER, VOLUME, and WORKDIR_. To pause the
# container while it is being committed, pass a _true_ bool for the pause argument. If the container cannot
# be found by the ID or name provided, a (ContainerNotFound)[#ContainerNotFound] error will be returned; otherwise,
-# the resulting image's ID will be returned as a string.
-method Commit(name: string, image_name: string, changes: []string, author: string, message: string, pause: bool, manifestType: string) -> (image: string)
+# the resulting image's ID will be returned as a string inside a MoreResponse.
+method Commit(name: string, image_name: string, changes: []string, author: string, message: string, pause: bool, manifestType: string) -> (reply: MoreResponse)
# ImportImage imports an image from a source (like tarball) into local storage. The image can have additional
# descriptions added to it using the message and changes options. See also [ExportImage](ExportImage).