mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-01 06:37:46 +00:00
Fix incorrect docker commands (#917)
Fix "docker run" and "docker container run" custom commands incorrectly expecting a "network" positional argument.
This commit is contained in:
parent
891854f25f
commit
2321b5b29a
1 changed files with 3 additions and 3 deletions
|
@ -657,7 +657,7 @@ export extern "docker container run" [
|
|||
--memory-swappiness: int #Tune container memory swappiness (0 to 100) (default -1)
|
||||
--mount: string #Attach a filesystem mount to the container
|
||||
--name: string #Assign a name to the container
|
||||
--network network #Connect a container to a network
|
||||
--network: string #Connect a container to a network
|
||||
--network-alias: string #Add network-scoped alias for the container
|
||||
--no-healthcheck #Disable any container-specified HEALTHCHECK
|
||||
--oom-kill-disable #Disable OOM Killer
|
||||
|
@ -819,7 +819,7 @@ export extern "docker run" [
|
|||
--memory-swappiness: int #Tune container memory swappiness (0 to 100) (default -1)
|
||||
--mount: string #Attach a filesystem mount to the container
|
||||
--name: string #Assign a name to the container
|
||||
--network network #Connect a container to a network
|
||||
--network: string #Connect a container to a network
|
||||
--network-alias: string #Add network-scoped alias for the container
|
||||
--no-healthcheck #Disable any container-specified HEALTHCHECK
|
||||
--oom-kill-disable #Disable OOM Killer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue