mirror of
https://github.com/containers/podman.git
synced 2025-10-21 05:13:47 +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>
25 lines
1019 B
Modula-2
25 lines
1019 B
Modula-2
module github.com/fsouza/go-dockerclient
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.4.15-0.20200113171025-3fe6c5262873
|
|
github.com/Microsoft/hcsshim v0.8.9 // indirect
|
|
github.com/containerd/containerd v1.3.4 // indirect
|
|
github.com/containerd/continuity v0.0.0-20200413184840-d3ef23f19fbb // indirect
|
|
github.com/docker/distribution v2.7.1+incompatible // indirect
|
|
github.com/docker/docker v17.12.0-ce-rc1.0.20200505174321-1655290016ac+incompatible
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
github.com/docker/go-units v0.4.0
|
|
github.com/google/go-cmp v0.5.2
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/moby/sys/mount v0.1.0 // indirect
|
|
github.com/moby/term v0.0.0-20200429084858-129dac9f73f6 // indirect
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.0.1 // indirect
|
|
github.com/opencontainers/runc v0.1.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20200429183012-4b2356b1ed79
|
|
google.golang.org/grpc v1.29.1 // indirect
|
|
gotest.tools/v3 v3.0.2 // indirect
|
|
)
|