Skip to content

Commit c0ce12a

Browse files
author
Gareth Midwood
authored
Merge pull request #4 from creode/feature/3-network-prune
Add network prune to cleanup command
2 parents b0707b8 + da0301a commit c0ce12a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/Environment/System/Docker.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public function cleanup($path)
1212
$this->run(self::COMMAND, ['container', 'prune', '--force'], $path);
1313
$this->run(self::COMMAND, ['image', 'prune', '--force'], $path);
1414
$this->run(self::COMMAND, ['volume', 'prune', '--force'], $path);
15+
$this->run(self::COMMAND, ['network', 'prune', '--force'], $path);
1516

1617
return 'Clean up complete.';
1718
}

0 commit comments

Comments
 (0)