-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
podman system service fails to honour tmpfs permissions requested by docker cli over socket #13108
Labels
kind/bug
Categorizes issue or PR as related to a bug.
locked - please file new issue/PR
Assist humans wanting to comment on an old issue or PR with locked comments.
remote
Problem is in podman-remote
Comments
By way of extra background, if one adds the
|
A friendly reminder that this issue had no activity for 30 days. |
rhatdan
added a commit
to rhatdan/podman
that referenced
this issue
Mar 9, 2022
The permissions on disk were wrong since we were not converting to octal. Fixes: containers#13108 [NO NEW TESTS NEEDED] Since we don't currently test using the docker client Signed-off-by: Daniel J Walsh <[email protected]>
tricktron
pushed a commit
to tricktron/podman
that referenced
this issue
Mar 14, 2022
The permissions on disk were wrong since we were not converting to octal. Fixes: containers#13108 [NO NEW TESTS NEEDED] Since we don't currently test using the docker client Signed-off-by: Daniel J Walsh <[email protected]>
mheon
pushed a commit
to mheon/libpod
that referenced
this issue
Mar 30, 2022
The permissions on disk were wrong since we were not converting to octal. Fixes: containers#13108 [NO NEW TESTS NEEDED] Since we don't currently test using the docker client Signed-off-by: Daniel J Walsh <[email protected]>
github-actions
bot
added
the
locked - please file new issue/PR
Assist humans wanting to comment on an old issue or PR with locked comments.
label
Sep 20, 2023
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
kind/bug
Categorizes issue or PR as related to a bug.
locked - please file new issue/PR
Assist humans wanting to comment on an old issue or PR with locked comments.
remote
Problem is in podman-remote
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind bug
Description
podman system service fails to honour correct tmpfs permissions requested by docker cli over socket.
Steps to reproduce the issue:
Run
docker --host=unix:///run/podman/podman.sock run --rm -it --mount=type=tmpfs,dst=/xxx,tmpfs-size=1G debian ls -ld /xxx
Describe the results you received:
d--------- 2 root root 40 Feb 1 23:27 /xxx
Describe the results you expected:
drwxrwxrwt 2 root root 40 Feb 1 23:26 /xxx
Additional information you deem important (e.g. issue happens only occasionally):
The expected output is returned by both
podman run --rm -it --mount=type=tmpfs,dst=/xxx,tmpfs-size=1G debian ls -ld /xxx
anddocker run --rm -it --mount=type=tmpfs,dst=/xxx,tmpfs-size=1G debian ls -ld /xxx
.Happens consistently.
Output of
podman version
:Output of
podman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):N/A - statically compiled from source using nix as per https://podman.io/getting-started/installation
Have you tested with the latest version of Podman and have you checked the Podman Troubleshooting Guide? (https://github.com/containers/podman/blob/main/troubleshooting.md)
Yes
Additional environment details (AWS, VirtualBox, physical, etc.):
Running vanilla Debian Bullseye on a KVM VM with Podman v4.0.0-rc3 release statically compiled from source using nix.
The text was updated successfully, but these errors were encountered: