Merge pull request #4680 from thaJeztah/24.0_backport_fix_flag_typo

[24.0 backport] docs/man: fix -name flag with single hyphen
This commit is contained in:
Sebastiaan van Stijn 2023-11-27 22:12:19 +01:00 committed by GitHub
commit 00dbc19cab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -678,7 +678,7 @@ any number of minor numbers (added as new devices appear), add the
following rule: following rule:
```console ```console
$ docker run -d --device-cgroup-rule='c 42:* rmw' -name my-container my-image $ docker run -d --device-cgroup-rule='c 42:* rmw' --name my-container my-image
``` ```
Then, a user could ask `udev` to execute a script that would `docker exec my-container mknod newDevX c 42 <minor>` Then, a user could ask `udev` to execute a script that would `docker exec my-container mknod newDevX c 42 <minor>`

View File

@ -25,7 +25,7 @@ any number of minor number (added as new devices appear), the
following rule would be added: following rule would be added:
```console ```console
$ docker create --device-cgroup-rule='c 42:* rmw' -name my-container my-image $ docker create --device-cgroup-rule='c 42:* rmw' --name my-container my-image
``` ```
Then, a user could ask `udev` to execute a script that would `docker exec my-container mknod newDevX c 42 <minor>` Then, a user could ask `udev` to execute a script that would `docker exec my-container mknod newDevX c 42 <minor>`