diff options
author | baude <bbaude@redhat.com> | 2019-04-25 13:58:25 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-05-30 10:14:23 -0500 |
commit | 2df462024bc59fcf117e3c68bd94b667aa0cecd0 (patch) | |
tree | d361fc884d0aad34f108d1693990c1289341d7e5 /cmd/podman/varlink | |
parent | c871653e195d8051ddfb899c2b73cc95de8e6443 (diff) | |
download | podman-2df462024bc59fcf117e3c68bd94b667aa0cecd0.tar.gz podman-2df462024bc59fcf117e3c68bd94b667aa0cecd0.tar.bz2 podman-2df462024bc59fcf117e3c68bd94b667aa0cecd0.zip |
podman remote-client commit
add the ability to commit a container to an image using the remote
client.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/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). |