cli.rst 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. Command Line Interface
  6. ======================
  7. Docker Usage
  8. ~~~~~~~~~~~~
  9. To list available commands, either run ``docker`` with no parameters or execute
  10. ``docker help``::
  11. $ docker
  12. Usage: docker COMMAND [arg...]
  13. A self-sufficient runtime for linux containers.
  14. ...
  15. Available Commands
  16. ~~~~~~~~~~~~~~~~~~
  17. .. toctree::
  18. :maxdepth: 1
  19. command/attach
  20. command/build
  21. command/commit
  22. command/diff
  23. command/export
  24. command/history
  25. command/images
  26. command/import
  27. command/info
  28. command/inspect
  29. command/kill
  30. command/login
  31. command/logs
  32. command/port
  33. command/ps
  34. command/pull
  35. command/push
  36. command/restart
  37. command/rm
  38. command/rmi
  39. command/run
  40. command/search
  41. command/start
  42. command/stop
  43. command/tag
  44. command/version
  45. command/wait