diff options
-rw-r--r-- | docs/api.md | 1 | ||||
-rw-r--r-- | docs/hostconfig.md | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/docs/api.md b/docs/api.md index aa5faa9..5afe533 100644 --- a/docs/api.md +++ b/docs/api.md @@ -749,6 +749,7 @@ from. Optionally a single string joining container id's with commas * pid_mode (str): if set to "host", use the host PID namespace inside the container * security_opt (list): A list of string values to customize labels for MLS systems, such as SELinux. +* ulimits (list): A list of dicts or `docker.utils.Ulimit` objects. ```python >>> from docker import Client diff --git a/docs/hostconfig.md b/docs/hostconfig.md index 3c11031..1d82c83 100644 --- a/docs/hostconfig.md +++ b/docs/hostconfig.md @@ -85,6 +85,8 @@ for example: * read_only (bool): mount the container's root filesystem as read only * pid_mode (str): if set to "host", use the host PID namespace inside the container +* security_opt (list): A list of string values to customize labels for MLS systems, such as SELinux. +* ulimits (list): A list of dicts or `docker.utils.Ulimit` objects. **Returns** (dict) HostConfig dictionary |