How do I pass docker parameters such as `--cap-add=XXX` to my docker instances running in BlueData?
问题 I would like to run a container with --cap-add=IPC_LOCK . According to the BlueData 3.7 release notes, IPC_LOCK is supported: HAATHI-13547 : Docker configuration now includes default IPC_LOCK capability for all deployed containers. IPC_LOCK is the feature otherwise known as memlock, required by certain customer applications. The permitted capabilities of Docker containers as expressed on the docker invocation command line when instantiating a container now includes this value explicitly. How