You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using podman-py for some container action, and I have a couple of questions;
Is it possible to get real-time logging of what is happening during image build(from PodmanClient().images.build) in podman-py. I noticed that the option is available for pull(from PodmanClient().images.pull) with stream=True
Does the PodmanClient support some kind of event loop that could be subscribed to, and receive the “stdout/stderr” as events regardless of podman command/method (build/pull) used?
There is an issue (I think) with this line. The API doesn’t respect the REST endpoint, the REST returns a simple integer instead of JSON/dict.
This prompts a TypeError, int object is not subscriptable
The text was updated successfully, but these errors were encountered:
Hello,
I'm using
podman-py
for some container action, and I have a couple of questions;Is it possible to get real-time logging of what is happening during image build(from
PodmanClient().images.build
) in podman-py. I noticed that the option is available for pull(fromPodmanClient().images.pull
) withstream=True
Does the PodmanClient support some kind of event loop that could be subscribed to, and receive the “stdout/stderr” as events regardless of podman command/method (build/pull) used?
There is an issue (I think) with this line. The API doesn’t respect the REST endpoint, the REST returns a simple integer instead of JSON/dict.
This prompts a
TypeError, int object is not subscriptable
The text was updated successfully, but these errors were encountered: