You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it is only possible to set ulimits for the container execution, but I also need to set it for the build, so I need to manually build the image using docker build -t _example_ --ulimit nofile=65536:65536 . and then run docker compose up, instead of just running docker compose up --build.
It would be nice if there was an element inside the build element that allowed ulimits to be defined.
This is what I have in mind:
Description
Currently, it is only possible to set ulimits for the container execution, but I also need to set it for the build, so I need to manually build the image using
docker build -t _example_ --ulimit nofile=65536:65536 .
and then rundocker compose up
, instead of just runningdocker compose up --build
.It would be nice if there was an element inside the build element that allowed ulimits to be defined.
This is what I have in mind:
The text was updated successfully, but these errors were encountered: