cli.rst 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. .. toctree::
  19. :maxdepth: 2
  20. command/attach
  21. command/build
  22. command/commit
  23. command/cp
  24. command/diff
  25. command/events
  26. command/export
  27. command/history
  28. command/images
  29. command/import
  30. command/info
  31. command/insert
  32. command/inspect
  33. command/kill
  34. command/login
  35. command/logs
  36. command/port
  37. command/ps
  38. command/pull
  39. command/push
  40. command/restart
  41. command/rm
  42. command/rmi
  43. command/run
  44. command/search
  45. command/start
  46. command/stop
  47. command/tag
  48. command/top
  49. command/version
  50. command/wait