0 votes
in Docker by
If you vaguely remember the command and you’d like to confirm it, how will you get help on that particular command?

1 Answer

0 votes
by

The following command is very useful as it gives you help on how to use a command, the syntax, etc.

$ docker --help

The above command lists all Docker commands. If you need help with one specific command, you can use the following syntax:

$ docker <command> --help

...