summaryrefslogtreecommitdiff
path: root/libpod/container.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-09-19 13:13:54 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-09-20 13:55:35 +0000
commit2cbb8c216a2f8e7160cdf88ef6ef50ee75559d96 (patch)
treed9ad9f56fe0f52b72b93e62dfc3bade4fc464e8e /libpod/container.go
parent1a59c4d5fe7b447e0b503f6bd43f218beed7a4d8 (diff)
downloadpodman-2cbb8c216a2f8e7160cdf88ef6ef50ee75559d96.tar.gz
podman-2cbb8c216a2f8e7160cdf88ef6ef50ee75559d96.tar.bz2
podman-2cbb8c216a2f8e7160cdf88ef6ef50ee75559d96.zip
Bind Mounts should be mounted read-only when in read-only mode
We don't want to allow users to write to /etc/resolv.conf or /etc/hosts if in read only mode. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #1510 Approved by: TomSweeneyRedHat
Diffstat (limited to 'libpod/container.go')
-rw-r--r--libpod/container.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/container.go b/libpod/container.go
index f68a3535e..fc613f406 100644
--- a/libpod/container.go
+++ b/libpod/container.go
@@ -970,3 +970,8 @@ func (c *Container) RootGID() int {
func (c *Container) IsInfra() bool {
return c.config.IsInfra
}
+
+// IsReadOnly returns whether the container is running in read only mode
+func (c *Container) IsReadOnly() bool {
+ return c.config.Spec.Root.Readonly
+}