String repository = DockerHelper.getProperty(DockerConstants.DOCKER_REPOSITORY, configuration, message, String.class);
String tag = DockerHelper.getProperty(DockerConstants.DOCKER_TAG, configuration, message, String.class);
TagImageCmd tagImageCmd = client.tagImageCmd(imageId, repository, tag);
Boolean force = DockerHelper.getProperty(DockerConstants.DOCKER_FORCE, configuration, message, Boolean.class);
if (force != null && force) {
tagImageCmd.withForce();
}
return tagImageCmd;
}