🐞 Error Log
Fatal error: runtime: out of memory. Container killed by OOM killer.
🧠 Root Cause
The container exceeded its memory limit, causing the Linux OOM killer to terminate the main process.
🛠️ Solution
Increase the memory limit for the container using
docker run -m 2g ... or monitor memory usage.💻 Code Fix
```bash
docker update --memory 2g --memory-swap 2g container_name
```