cli.rst 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. $ docker
  12. Usage: docker [OPTIONS] COMMAND [arg...]
  13. -H=[tcp://127.0.0.1:4243]: 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. .. toctree::
  19. :maxdepth: 2
  20. command/attach
  21. command/build
  22. command/commit
  23. command/cp
  24. command/diff
  25. command/export
  26. command/history
  27. command/images
  28. command/import
  29. command/info
  30. command/inspect
  31. command/kill
  32. command/login
  33. command/logs
  34. command/port
  35. command/ps
  36. command/pull
  37. command/push
  38. command/restart
  39. command/rm
  40. command/rmi
  41. command/run
  42. command/search
  43. command/start
  44. command/stop
  45. command/tag
  46. command/top
  47. command/version
  48. command/wait