Skip to content

Commit 3bcd138

Browse files
author
alex.collins
committed
fixed bug where tag was being ignored
1 parent cd4e37c commit 3bcd138

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/kpelykh/docker/client/DockerClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ public ClientResponse build(File dockerFolder) throws DockerException {
672672
}
673673

674674
public ClientResponse build(File dockerFolder, String tag) throws DockerException {
675-
return this.build(dockerFolder, null, false);
675+
return this.build(dockerFolder, tag, false);
676676
}
677677

678678
public ClientResponse build(File dockerFolder, String tag, boolean noCache) throws DockerException {

0 commit comments

Comments
 (0)