summaryrefslogtreecommitdiff
path: root/pkg/spec/storage.go
diff options
context:
space:
mode:
authorAshley Cui <ashleycui16@gmail.com>2019-08-13 13:28:36 -0400
committerAshley Cui <ashleycui16@gmail.com>2019-08-14 09:42:33 -0400
commit2eda50cb31d217db2339197c20c267f8e6d117c1 (patch)
tree7ef7e0e714a6d0602dde2ddc5e9c81f460841b19 /pkg/spec/storage.go
parentb6c9b108670361a59435a3641d486e6086c9bab3 (diff)
downloadpodman-2eda50cb31d217db2339197c20c267f8e6d117c1.tar.gz
podman-2eda50cb31d217db2339197c20c267f8e6d117c1.tar.bz2
podman-2eda50cb31d217db2339197c20c267f8e6d117c1.zip
Remove --tmpfs size default
Docker has unlimited tmpfs size where Podman had it set to 64mb. Should be standard between the two. Remove noexec default Signed-off-by: Ashley Cui <ashleycui16@gmail.com>
Diffstat (limited to 'pkg/spec/storage.go')
-rw-r--r--pkg/spec/storage.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/spec/storage.go b/pkg/spec/storage.go
index a8dc7f4a8..b634f4cac 100644
--- a/pkg/spec/storage.go
+++ b/pkg/spec/storage.go
@@ -168,14 +168,14 @@ func (config *CreateConfig) parseVolumes(runtime *libpod.Runtime) ([]spec.Mount,
"/run": false,
}
if config.ReadOnlyRootfs && config.ReadOnlyTmpfs {
- options := []string{"rw", "rprivate", "nosuid", "nodev", "tmpcopyup", "size=65536k"}
+ options := []string{"rw", "rprivate", "nosuid", "nodev", "tmpcopyup"}
for dest := range readonlyTmpfs {
if _, ok := baseMounts[dest]; ok {
continue
}
localOpts := options
if dest == "/run" {
- localOpts = append(localOpts, "noexec")
+ localOpts = append(localOpts, "noexec", "size=65536k")
}
baseMounts[dest] = spec.Mount{
Destination: dest,