|
|
|
@ -83,14 +83,9 @@ public abstract class AbstractDockerComposeIntegrationTests {
|
|
|
|
|
private File transformedComposeFile(File composeFile, DockerImageName imageName) {
|
|
|
|
|
File tempComposeFile = Path.of(tempDir.toString(), composeFile.getName()).toFile();
|
|
|
|
|
try {
|
|
|
|
|
String composeFileContent;
|
|
|
|
|
try (FileReader reader = new FileReader(composeFile)) {
|
|
|
|
|
composeFileContent = FileCopyUtils.copyToString(reader);
|
|
|
|
|
}
|
|
|
|
|
String composeFileContent = FileCopyUtils.copyToString(new FileReader(composeFile));
|
|
|
|
|
composeFileContent = composeFileContent.replace("{imageName}", imageName.asCanonicalNameString());
|
|
|
|
|
try (FileWriter writer = new FileWriter(tempComposeFile)) {
|
|
|
|
|
FileCopyUtils.copy(composeFileContent, writer);
|
|
|
|
|
}
|
|
|
|
|
FileCopyUtils.copy(composeFileContent, new FileWriter(tempComposeFile));
|
|
|
|
|
}
|
|
|
|
|
catch (IOException ex) {
|
|
|
|
|
fail("Error transforming Docker compose file '" + composeFile + "' to '" + tempComposeFile + "': "
|
|
|
|
|