When running Elixir container bootstrap I get Error loading module pooler_app, how can I solve that? When running Elixir container bootstrap I get Error loading module pooler_app, how can I solve that? docker docker

When running Elixir container bootstrap I get Error loading module pooler_app, how can I solve that?


The first error message indicates an outdated build, then to solve that I needed to:

rm -rf project/_build

And tried again the bootstrap, however it showed the second error, about the re2 lib compiled with a different version, even deleting the _build and images didn't solve the issue, then I thought about compile the project (and libs, then try the bootstrap after):

mix compile

As mentioned by @Marcos Tapajós, I believe mix clean would work too.

Then my command worked:

./project bootstrap

I guess there are other place where the package was outdated on my machine.