-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Feature: run/exec --docker-compatible-check
#6804
Comments
I am not sure how this would work. The goal is for both to work exactly the same. But we do have to deal with running docker as root versus running podman as non-root, which caused both of your issues. |
No worries. Just thought it'd be a useful feature to encourage users who only occasionally dip into Docker but have it scattered throughout their scripts as they have written them from time-to-time.
I think root and root + Happy to close this. Leave it up to you. |
Yes I wish we had a simpler solution for the --volume /dev:/dev problem. |
A friendly reminder that this issue had no activity for 30 days. |
@giuseppe Any ideas? |
Allow to create a devpts mount. This is useful for containers that bind mount /dev/ from the host but at the same time want to create a terminal. It can be used as: podman run -v /dev:/dev --mount type=devpts,target=/dev/pts ... Closes: containers#6804 Signed-off-by: Giuseppe Scrivano <[email protected]>
sorry for the delay. I think the best we can offer is a way to mount a new devpts: #7209 In this way we can do something like:
It would be easy to silently do it, but I prefer if it done explicitly and have control on it |
/kind feature
Description
As a user of 3rd-party tools that use Docker in scripts
I want to easily see the changes need to be made to replace
docker
withpodman
I want to check docker compatibility without downloading or building images
I want a report that solves incompatibilities
I want a report that shows potential issues
I want a report that shows solutions for potential issues
Steps to reproduce the issue:Describe the results you received:
Currently no such helper exists.
Describe the results you expected:
Ideally the report would show for known incompatibilities:
A. The
podman
option/argument that replaces a particulardocker
option/argumentIdeally the report would show for potential issues:
A. A description of the possible issue
B. A description of the solution
Example workflow
Given a docker command:
When I change to this
podman
commandI receive some such report:
Additional information you deem important (e.g. issue happens only occasionally):
This issue arises immediately for any user switching from Docker to Podman.
Output of
podman version
:Output ofpodman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):Additional environment details (AWS, VirtualBox, physical, etc.):
Any
The text was updated successfully, but these errors were encountered: