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
# --privileged: With this mode, we can bind mem and CPU nodes inside the container and use numa effectively.
# --cpuset-cpus: limits which cores (or logical processor in case of hyperthread) your container can run on. --cpuset-cpus=0-1 means that your container can only use logical processor 0 and 1, and no other. When using it, make sure to pair up hyperthreads together.
# --cpuset-mems: NUMA memory node
# --ulimit: <item type>=<soft limit>[:<hard limit>]. If no ulimits are set, they are inherited from the default ulimits set on the daemon. Docker doesn’t perform any byte conversion. E.g. (https://stackoverflow.com/questions/36298913/docker-container-does-not-inherit-ulimit-from-host)