blob: 8a1c293f15939c9c8599b96da1500211db2b9489 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# pypodman - CLI interface for podman written in python
## Status: Active Development
See [libpod](https://github.com/projectatomic/libpod/contrib/python/cmd)
## Releases
To build the pypodman egg:
```sh
cd ~/libpod/contrib/python/cmd
python3 setup.py clean -a && python3 setup.py bdist
```
## Running command:
### Against local podman service
```sh
$ pypodman images
```
### Against remote podman service
```sh
$ pypodman --host node001.example.org images
```
### Full help system available
```sh
$ pypodman -h
```
```sh
$ pypodman images -h
```
|