We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This would allow helm/charts#5873 to be fixed. A similar fix was implemented for the bitnami image for helm/charts#3855.
The text was updated successfully, but these errors were encountered:
This is already available via the docker run interface, so it is not necessary via an environment variable:
$ docker run -it --rm --ulimit nofile=1024 rabbitmq bash root@9a784c3998c3:/# ulimit -n 1024 root@9a784c3998c3:/# exit
See kubernetes/kubernetes#3595 for Kubernetes support. Since Kubernetes does not support it, you could always change the command of the container:
$ docker run -it --rm rabbitmq bash -c 'ulimit -n && ulimit -n 1024 && ulimit -n' 1048576 1024 $ # so, something like this: $ docker run -d rabbitmq bash -c 'ulimit -n 1024 && exec docker-entrypoint.sh rabbitmq'
Sorry, something went wrong.
It is needed if you want default behaviour and not always think about adding --ulimit flag to each docker build or docker run commands
No branches or pull requests
This would allow helm/charts#5873 to be fixed. A similar fix was implemented for the bitnami image for helm/charts#3855.
The text was updated successfully, but these errors were encountered: