websoft9/cli/test.py

5 lines
94 B
Python
Raw Normal View History

2021-10-16 10:57:11 +00:00
import docker
2021-10-07 09:36:09 +00:00
2021-10-16 10:57:11 +00:00
client = docker.from_env()
for image in client.images.list():
print(image.id)