diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-21 22:44:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-21 22:44:56 +0100 |
commit | 1b69a8fa3ae67e0ae08377d4d704756904a88611 (patch) | |
tree | a5054bdb3d3718ba8140804ea47c9cb707fb56e3 /pkg/api/handlers/libpod/containers.go | |
parent | f467bb20bd1c98b1706fa3c4448857800395c169 (diff) | |
parent | 78e4e83e92b2c17ed59564e8f504f17008c7d269 (diff) | |
download | podman-1b69a8fa3ae67e0ae08377d4d704756904a88611.tar.gz podman-1b69a8fa3ae67e0ae08377d4d704756904a88611.tar.bz2 podman-1b69a8fa3ae67e0ae08377d4d704756904a88611.zip |
Merge pull request #4915 from baude/reviewcorrections
[CI:DOCS]First pass at review comments
Diffstat (limited to 'pkg/api/handlers/libpod/containers.go')
-rw-r--r-- | pkg/api/handlers/libpod/containers.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/containers.go b/pkg/api/handlers/libpod/containers.go index 388be24b6..e16a4ea1f 100644 --- a/pkg/api/handlers/libpod/containers.go +++ b/pkg/api/handlers/libpod/containers.go @@ -143,6 +143,22 @@ func CreateContainer(w http.ResponseWriter, r *http.Request) { } +func UnmountContainer(w http.ResponseWriter, r *http.Request) { + runtime := r.Context().Value("runtime").(*libpod.Runtime) + name := mux.Vars(r)["name"] + conn, err := runtime.LookupContainer(name) + if err != nil { + utils.ContainerNotFound(w, name, err) + return + } + // TODO In future it might be an improvement that libpod unmount return a + // "container not mounted" error so we can surface that to the endpoint user + if err := conn.Unmount(false); err != nil { + utils.InternalServerError(w, err) + } + utils.WriteResponse(w, http.StatusNoContent, "") + +} func MountContainer(w http.ResponseWriter, r *http.Request) { runtime := r.Context().Value("runtime").(*libpod.Runtime) name := mux.Vars(r)["name"] |