-
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-docker doesn't support --config #14767
Comments
Thanks for reaching out, @coiby! @containers/podman-maintainers WDYT? |
I think the |
Thanks for correcting, @Luap99. I agree, it should be the client config not the daemon one. |
I think it would be difficult to support some of the flags. I guess we could add limited support perhaps specific to the requirements of a github action. @coiby Do you know specifically what the github action is looking for? If we just added the flag and ignored it, would that still work in most cases? |
@rhatdan According to https://github.com/coiby/kexec-tools/runs/7105084564?check_suite_focus=true, Github Action specify
Note one weird thing is If I simply ignore #!/usr/bin/sh
[ -e /etc/containers/nodocker ] || \
echo "Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg." >&2
if [[ "$1" == --config ]]; then
shift 2
fi
exec /usr/bin/podman "$@" Github Action could continue. |
A friendly reminder that this issue had no activity for 30 days. |
I have no idea how Podman could use that config file. Bottom line the simplest thing to do is add the option and then ignore it. |
A friendly reminder that this issue had no activity for 30 days. |
Fixes: containers#14767 Signed-off-by: Daniel J Walsh <[email protected]>
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind bug
Description
podman doesn't support
--config
. One consequence is Github Action could fail because when using a podman-docker on a self-hosted runner.Steps to reproduce the issue:
Install podman-docker (podman version 4.1.1)
docker --config
Describe the results you received:
Describe the results you expected:
pod
Additional information you deem important (e.g. issue happens only occasionally):
Output of
podman version
:Output of
podman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):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)
No
Additional environment details (AWS, VirtualBox, physical, etc.):
The text was updated successfully, but these errors were encountered: