Elixir/Docker app takes 2Go of RAM

I’ve had success with this environment variable in the past (given in Compose format):

services:
  phoenix:
    environment:
      ERL_MAX_PORTS: 1024  # Fixes excessive RAM usage on some systems

Here’s a thread with more info:

1 Like