silence stdout on prune

This commit is contained in:
kjeld Schouten-Lebbing
2022-01-19 19:12:29 +01:00
parent 4da492181f
commit 1064d1e13f
2 changed files with 2 additions and 5 deletions

View File

@ -112,10 +112,7 @@ def docker_prune():
if PRUNE:
print("Pruning old docker images...\n")
process = subprocess.Popen(["docker", "image", "prune", "-af"], stdout=subprocess.PIPE)
while process.poll() is None:
lines = process.stdout.readline()
print (lines)
print (process.stdout.read())
print("Images pruned.\n")
def run():
process_args()