Skip to content

Commit 4f439e6

Browse files
committed
Merge branch 'release/2.3.2'
2 parents c1af674 + f162a4a commit 4f439e6

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ CliTools Changelog
44
next - UPCOMING
55
------------------
66

7+
2.3.2 - 2016-02-18
8+
------------------
9+
- Fixed issue which prevented deletion of orpahend docker images
10+
- SLOC: 7,034
11+
712
2.3.1 - 2016-02-14
813
------------------
914
- Switched to official docker volume cleanup

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CliTools for Docker, PHP und MySQL development
22

3-
[![latest v2.3.1](https://img.shields.io/badge/latest-v2.3.1-green.svg?style=flat)](https://github.com/webdevops/clitools/releases/tag/2.3.1)
3+
[![latest v2.3.2](https://img.shields.io/badge/latest-v2.3.2-green.svg?style=flat)](https://github.com/webdevops/clitools/releases/tag/2.3.2)
44
[![License GPL3](https://img.shields.io/badge/license-GPL3-blue.svg?style=flat)](/LICENSE)
55
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/webdevops/clitools.svg)](http://isitmaintained.com/project/webdevops/clitools "Average time to resolve an issue")
66
[![Percentage of issues still open](http://isitmaintained.com/badge/open/webdevops/clitools.svg)](http://isitmaintained.com/project/webdevops/clitools "Percentage of issues still open")

src/app/CliTools/Console/Command/Docker/CleanupCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function cleanDockerImages()
6969
$command = new CommandBuilder('docker', 'images -qf "dangling=true"');
7070
$imageList = $command->execute()->getOutput();
7171

72-
if (!empty($volumeList)) {
72+
if (!empty($imageList)) {
7373
$this->output->writeln('<p>Found ' . number_format(count($imageList)) . ' images for cleanup</p>');
7474

7575
while (!empty($imageList)) {

src/command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222

2323
error_reporting(E_ALL);
24-
define('CLITOOLS_COMMAND_VERSION', '2.3.1');
24+
define('CLITOOLS_COMMAND_VERSION', '2.3.2');
2525
define('CLITOOLS_ROOT_FS', __DIR__);
2626

2727
require __DIR__ . '/vendor/autoload.php';

0 commit comments

Comments
 (0)