Fix failing smoke test

This commit is contained in:
Trask Stalnaker 2021-08-21 15:23:02 -07:00
parent 5ff7901efc
commit 0356ae308b
1 changed files with 2 additions and 0 deletions

View File

@ -314,6 +314,8 @@ public class WindowsTestContainerManager extends AbstractTestContainerManager {
CreateContainerCmd createCommand = client.createContainerCmd(imageName);
createAction.accept(createCommand);
// default appears to be 1gb which is not enough for liberty
createCommand.getHostConfig().withMemory(2_000_000_000L);
String containerId = createCommand.exec().getId();