python-podman icon indicating copy to clipboard operation
python-podman copied to clipboard

Python bindings and code examples for using Varlink access to Podman Service

Results 19 python-podman issues
Sort by recently updated
recently updated
newest added

Related to https://github.com/containers/python-podman/issues/64

import podman pclient = podman.Client() img = pclient.images.get('6c0fc7ee13e0') for his in img.history(): print(his) fails with : Traceback (most recent call last): File "test.py", line 11, in for his in img.history():...

I am trying to start a container using the python API from this repo: ``` # up log level import logging logging.getLogger().setLevel(logging.DEBUG) # action import podman with podman.Client() as client:...

I installed podman and the python podman library. But I does not show any images or containers: ``` $ podman version Version: 2.0.4 API Version: 1 Go Version: go1.14.4 Built:...

--- I'm facing an issue with the simplest possible API call that I could think about with podman.Client() as client: ...: list(client.containers.list()) which on my setup, with one single container...

**Is this a BUG REPORT or FEATURE REQUEST?**: [//]: # **kind bug** **Description** I really like the python interface you have built. Unfortunately it's not possible to be used with...

The method `podman/libs/images.py#Images.build` runs `os.walk`, and expects it to return a list of files from `context_directory`. It actually yields a 3-tuple `(dirpath, dirnames, filenames)` as described [here](https://docs.python.org/3.8/library/os.html#os.walk). Later, when trying...

after looking at the code's docstrings, i understand that there is unsufficent embedded documentation to build an API documentation. Maybe you want to keep this issue open for others that...

Is there a way to pass variables like "tls-verify=false" when pushing images?