summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2022-03-08 08:57:21 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2022-03-09 08:03:42 -0500
commit166edf00a13a3a81b8b3c2c6678ca8ef1479ad74 (patch)
tree57f8daa35b259595c0aaa984e2a545c00cb6dab2 /cmd
parent3e870f8c8e3736e9c81473d45c8148d4de0e70c3 (diff)
downloadpodman-166edf00a13a3a81b8b3c2c6678ca8ef1479ad74.tar.gz
podman-166edf00a13a3a81b8b3c2c6678ca8ef1479ad74.tar.bz2
podman-166edf00a13a3a81b8b3c2c6678ca8ef1479ad74.zip
Fix handling of tmpfs-mode for tmpfs creation in compat mode
The permissions on disk were wrong since we were not converting to octal. Fixes: https://github.com/containers/podman/issues/13108 [NO NEW TESTS NEEDED] Since we don't currently test using the docker client Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/common/create_opts.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common/create_opts.go b/cmd/podman/common/create_opts.go
index a4f94616c..b110b3d85 100644
--- a/cmd/podman/common/create_opts.go
+++ b/cmd/podman/common/create_opts.go
@@ -117,7 +117,7 @@ func ContainerCreateToContainerCLIOpts(cc handlers.CreateContainerConfig, rtc *c
case mount.TypeTmpfs:
if m.TmpfsOptions != nil {
addField(&builder, "tmpfs-size", strconv.FormatInt(m.TmpfsOptions.SizeBytes, 10))
- addField(&builder, "tmpfs-mode", strconv.FormatUint(uint64(m.TmpfsOptions.Mode), 10))
+ addField(&builder, "tmpfs-mode", strconv.FormatUint(uint64(m.TmpfsOptions.Mode), 8))
}
case mount.TypeVolume:
// All current VolumeOpts are handled above