mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-25 12:02:12 +00:00
Update to buildroot 2023.08.2, updated nwipe to v0.35, added ChromeOS and Microsoft Surface drivers, fibre channel drivers.
This commit is contained in:
12
support/testing/tests/package/sample_python_docker.py
Normal file
12
support/testing/tests/package/sample_python_docker.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import docker
|
||||
|
||||
client = docker.from_env()
|
||||
info = client.info()
|
||||
images = client.images.list()
|
||||
|
||||
assert len(images) > 0
|
||||
|
||||
print('Version:', info['ServerVersion'])
|
||||
print('Images:')
|
||||
for i in images:
|
||||
print(i.tags[0])
|
||||
Reference in New Issue
Block a user