-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Increase amount of opened files #136
Conversation
Signed-off-by: Vitaliy Gulyy <[email protected]>
universal/ubi8/Dockerfile
Outdated
# default_ulimits = [ | ||
# "nofile=65535:65535", | ||
# ] | ||
RUN (echo '[containers]'; echo 'default_ulimits = ['; echo ' "nofile=65535:65535",'; echo ']') >> /etc/containers/containers.conf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems good to me, but could also be done with a COPY directive (though you might also have to include a chown as is done here)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Could you take a look again?
Signed-off-by: Vitaliy Gulyy <[email protected]>
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: amisevsk, AObuchow, vitaliy-guliy The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Add configuration to increase amount of opened files Signed-off-by: Vitaliy Gulyy <[email protected]>
Creates
/etc/containers/containers.conf
configuration file to increase amount of opened files forpodman build / podman run
Required for eclipse-che/che#22292