From 43e6c9864b6d4a20b02f2454ac320a52ad410254 Mon Sep 17 00:00:00 2001 From: Shishir Mahajan Date: Tue, 21 Jun 2016 10:49:28 -0400 Subject: [PATCH] Man page fix: Mention supported drivers for --storage-opt size option in docker create/run Signed-off-by: Shishir Mahajan --- man/docker-create.1.md | 2 +- man/docker-run.1.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/man/docker-create.1.md b/man/docker-create.1.md index 4dc90d89d8..be0e5e9d29 100644 --- a/man/docker-create.1.md +++ b/man/docker-create.1.md @@ -340,7 +340,7 @@ unit, `b` is used. Set LIMIT to `-1` to enable unlimited swap. $ docker create -it --storage-opt size=120G fedora /bin/bash This (size) will allow to set the container rootfs size to 120G at creation time. User cannot pass a size less than the Default BaseFS Size. - This option is only available for the `devicemapper`, `btrfs` and `zfs` graphrivers. + This option is only available for the `devicemapper`, `btrfs`, and `zfs` graph drivers. **--stop-signal**=*SIGTERM* Signal to stop a container. Default is SIGTERM. diff --git a/man/docker-run.1.md b/man/docker-run.1.md index 055c8e6d67..6fdc93cd60 100644 --- a/man/docker-run.1.md +++ b/man/docker-run.1.md @@ -492,7 +492,7 @@ its root filesystem mounted as read only prohibiting any writes. $ docker run -it --storage-opt size=120G fedora /bin/bash This (size) will allow to set the container rootfs size to 120G at creation time. User cannot pass a size less than the Default BaseFS Size. - This option is only available for the `devicemapper`, `btrfs` and `zfs` graphrivers. + This option is only available for the `devicemapper`, `btrfs`, and `zfs` graph drivers. **--stop-signal**=*SIGTERM* Signal to stop a container. Default is SIGTERM.