Merge pull request #19437 from HackToday/fixulimit

Fix ulimit command form
This commit is contained in:
Vincent Demeester 2016-01-19 10:26:02 +01:00
Родитель 25f4f71512 98e5a8efcc
Коммит 05e36d254f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -539,7 +539,7 @@ available in the default container, you can set these using the `--ulimit` flag.
`--ulimit` is specified with a soft and hard limit as such:
`<type>=<soft limit>[:<hard limit>]`, for example:
$ docker run --ulimit nofile=1024:1024 --rm debian ulimit -n
$ docker run --ulimit nofile=1024:1024 --rm debian sh -c "ulimit -n"
1024
> **Note:**