cli.rst 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. :title: Command Line Interface
  2. :description: Docker's CLI command description and usage
  3. :keywords: Docker, Docker documentation, CLI, command line
  4. .. _cli:
  5. Overview
  6. ======================
  7. Docker Usage
  8. ~~~~~~~~~~~~~~~~~~
  9. To list available commands, either run ``docker`` with no parameters or execute
  10. ``docker help``::
  11. $ sudo docker
  12. Usage: docker [OPTIONS] COMMAND [arg...]
  13. -H=[unix:///var/run/docker.sock]: tcp://host:port to bind/connect to or unix://path/to/socket to use
  14. A self-sufficient runtime for linux containers.
  15. ...
  16. Available Commands
  17. ~~~~~~~~~~~~~~~~~~
  18. .. include:: command/attach.rst
  19. .. include:: command/build.rst
  20. .. include:: command/commit.rst
  21. .. include:: command/cp.rst
  22. .. include:: command/diff.rst
  23. .. include:: command/events.rst
  24. .. include:: command/export.rst
  25. .. include:: command/history.rst
  26. .. include:: command/images.rst
  27. .. include:: command/import.rst
  28. .. include:: command/info.rst
  29. .. include:: command/insert.rst
  30. .. include:: command/inspect.rst
  31. .. include:: command/kill.rst
  32. .. include:: command/login.rst
  33. .. include:: command/logs.rst
  34. .. include:: command/port.rst
  35. .. include:: command/ps.rst
  36. .. include:: command/pull.rst
  37. .. include:: command/push.rst
  38. .. include:: command/restart.rst
  39. .. include:: command/rm.rst
  40. .. include:: command/rmi.rst
  41. .. include:: command/run.rst
  42. .. include:: command/search.rst
  43. .. include:: command/start.rst
  44. .. include:: command/stop.rst
  45. .. include:: command/tag.rst
  46. .. include:: command/top.rst
  47. .. include:: command/version.rst
  48. .. include:: command/wait.rst