cli.rst 943 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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/start
  41. command/stop
  42. command/tag
  43. command/version
  44. command/wait