Skip to content

Commit c99f072

Browse files
committed
#10 Fixed 'docker image ls' command to make it backwards compatible for Docker v1.12, which only accepts 'docker images'.
1 parent 50292a0 commit c99f072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/main/java/nl/_42/boot/docker/postgres/DockerImageAvailableCheck.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class DockerImageAvailableCheck extends AbstractDockerAvailableCheck {
99

1010
private static final Logger LOGGER = LoggerFactory.getLogger(DockerPostgresBootSequence.class);
1111

12-
private final static String COMMAND = "docker image ls";
12+
private final static String COMMAND = "docker images";
1313

1414
private final String imageName;
1515
private final String imageVersion;

0 commit comments

Comments
 (0)