1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Subuser name not listed.
Usage: subuser run [arguments-for-run-command] SUBUSER-NAME [arguments-for-subuser]
Run the given subuser.
For example:
$ subuser run iceweasel
Will launch the subuser named iceweasel
To launch the subuser with another executable than it's default use the ``--entrypoint`` option.
If the SUBUSER_EXTRA_DOCKER_ARGS environment variable is set. Those arguments will be passed to Docker.
Options:
-h, --help show this help message and exit
--entrypoint=ENTRYPOINT
Override the default executable for this subuser.
--dry Dry run, only display what commands would be called by
subuser, don't actually run anything.
--dry-one-arg-per-line
Dry run, only display what commands would be called by
subuser, don't actually run anything. Displays one
argument per line when displaying the commands that
would be calleed by subuser, in order to improve the
ability for the test suit to detect changes to the
command using a line based diff.
|