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
Allow users to set the shared memory size (--shm-size=N) when creating a runnable container image.
--shm-size=N
An example for a container where this is useful would be solace/solace-pubsub-standard, which requires at least 1GB of shared memory to be able to run (see Solace Docs > Resource Requirements for Container Images). By default, the docker run command sets the shared memory size to 64MB (see option --shm-size).
docker run
--shm-size
Analog feature in testcontainers for Java: testcontainers/testcontainers-java#952.
The text was updated successfully, but these errors were encountered:
Sounds reasonable to me, thank you for creating a PR!
Sorry, something went wrong.
b168d9d
Successfully merging a pull request may close this issue.
Allow users to set the shared memory size (
--shm-size=N
) when creating a runnable container image.An example for a container where this is useful would be solace/solace-pubsub-standard, which requires at least 1GB of shared memory to be able to run (see Solace Docs > Resource Requirements for Container Images). By default, the
docker run
command sets the shared memory size to 64MB (see option--shm-size
).Analog feature in testcontainers for Java: testcontainers/testcontainers-java#952.
The text was updated successfully, but these errors were encountered: