From 5dad2c7aac0f537774f794c81e89ac5437ede98f Mon Sep 17 00:00:00 2001 From: smaftoul-scalingo Date: Tue, 7 Jul 2026 18:24:30 +0200 Subject: [PATCH] feat: correct container sizes and memory specifications This comes from the confusion that docker uses `--memory-swap` which includes the memory. --- .../platform/internals/2000-01-01-container-sizes.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/_posts/platform/internals/2000-01-01-container-sizes.md b/src/_posts/platform/internals/2000-01-01-container-sizes.md index 63fac474c..2cb1f0b37 100644 --- a/src/_posts/platform/internals/2000-01-01-container-sizes.md +++ b/src/_posts/platform/internals/2000-01-01-container-sizes.md @@ -11,11 +11,11 @@ capabilities and isolation characteristics associated with each profile. | Size | Memory (MB) | Swap (MB) | [CPU Priority](#cpu) | [PID](#pid) | [FD](#fd) | | :-----: | ----------: | --------: | :------------------: | ----------: | :-------: | -| **S** | 256 | 512 | Low | 128 | 1048576 | -| **M** | 512 | 1024 | Standard | 256 | 1048576 | -| **L** | 1024 | 2048 | Standard | 512 | 1048576 | -| **XL** | 2048 | 4096 | High | 1024 | 1048576 | -| **2XL** | 4096 | 8192 | High | 2048 | 1048576 | +| **S** | 256 | 256 | Low | 128 | 1048576 | +| **M** | 512 | 512 | Standard | 256 | 1048576 | +| **L** | 1024 | 1024 | Standard | 512 | 1048576 | +| **XL** | 2048 | 2048 | High | 1024 | 1048576 | +| **2XL** | 4096 | 4096 | High | 2048 | 1048576 | The default container size is **M**.