Disable OOM killer
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Adam Štrauch 2023-09-25 18:47:11 +02:00
parent 7f8ed1c018
commit ed5061fd58
Signed by: cx
GPG Key ID: 7262DAFE292BCE20
1 changed files with 3 additions and 0 deletions

View File

@ -338,6 +338,8 @@ func (d *Driver) Create(name string, image string, volumePath string, HTTPPort i
}
}
trueValue := true
createdContainer, err := cli.ContainerCreate(
context.Background(),
&container.Config{
@ -356,6 +358,7 @@ func (d *Driver) Create(name string, image string, volumePath string, HTTPPort i
CPUQuota: int64(CPU) * 1000,
Memory: int64(memory*110/100) * 1024 * 1024, // Allow 10 % more memory so we have space for MemoryReservation
MemoryReservation: int64(memory) * 1024 * 1024, // This should provide softer way how to limit the memory of our containers
OomKillDisable: &trueValue,
},
PortBindings: portBindings,
AutoRemove: false,