mirror of
https://github.com/containers/podman.git
synced 2025-09-14 20:13:22 +08:00

Add a new "image" mount type to `--mount`. The source of the mount is the name or ID of an image. The destination is the path inside the container. Image mounts further support an optional `rw,readwrite` parameter which if set to "true" will yield the mount writable inside the container. Note that no changes are propagated to the image mount on the host (which in any case is read only). Mounts are overlay mounts. To support read-only overlay mounts, vendor a non-release version of Buildah. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
23 lines
471 B
Go
23 lines
471 B
Go
package docker
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
// PauseContainer pauses the given container.
|
|
//
|
|
// See https://goo.gl/D1Yaii for more details.
|
|
func (c *Client) PauseContainer(id string) error {
|
|
path := fmt.Sprintf("/containers/%s/pause", id)
|
|
resp, err := c.do(http.MethodPost, path, doOptions{})
|
|
if err != nil {
|
|
if e, ok := err.(*Error); ok && e.Status == http.StatusNotFound {
|
|
return &NoSuchContainer{ID: id}
|
|
}
|
|
return err
|
|
}
|
|
resp.Body.Close()
|
|
return nil
|
|
}
|