diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-06-03 20:58:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 20:58:13 +0200 |
commit | e41162076a2668fa93c61dadaf72d285590c4c6e (patch) | |
tree | 573d5d0832cd316eedadb68748b936fe27ef428c /cmd/podman/varlink/io.podman.varlink | |
parent | 7c465d4d9738f25546d61b915d63bf8fff0ed14d (diff) | |
parent | 2df462024bc59fcf117e3c68bd94b667aa0cecd0 (diff) | |
download | podman-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/io.podman.varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 4 |
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). |