docker_remote_api.rst 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. :title: Remote API
  2. :description: API Documentation for Docker
  3. :keywords: API, Docker, rcli, REST, documentation
  4. .. COMMENT use http://pythonhosted.org/sphinxcontrib-httpdomain/ to
  5. .. document the REST API.
  6. =================
  7. Docker Remote API
  8. =================
  9. 1. Brief introduction
  10. =====================
  11. - The Remote API is replacing rcli
  12. - By default the Docker daemon listens on unix:///var/run/docker.sock and the client must have root access to interact with the daemon
  13. - If a group named *docker* exists on your system, docker will apply ownership of the socket to the group
  14. - The API tends to be REST, but for some complex commands, like attach
  15. or pull, the HTTP connection is hijacked to transport stdout stdin
  16. and stderr
  17. - Since API version 1.2, the auth configuration is now handled client
  18. side, so the client has to send the authConfig as POST in
  19. /images/(name)/push
  20. 2. Versions
  21. ===========
  22. The current version of the API is 1.7
  23. Calling /images/<name>/insert is the same as calling
  24. /v1.7/images/<name>/insert
  25. You can still call an old version of the api using
  26. /v1.0/images/<name>/insert
  27. v1.8
  28. ****
  29. Full Documentation
  30. ------------------
  31. :doc:`docker_remote_api_v1.8`
  32. What's new
  33. ----------
  34. .. http:post:: /build
  35. **New!** This endpoint now returns build status as json stream. In case
  36. of a build error, it returns the exit status of the failed command.
  37. .. http:get:: /containers/(id)/json
  38. **New!** This endpoint now returns the host config for the container.
  39. v1.7
  40. ****
  41. Full Documentation
  42. ------------------
  43. :doc:`docker_remote_api_v1.7`
  44. What's new
  45. ----------
  46. .. http:get:: /images/json
  47. The format of the json returned from this uri changed. Instead of an entry
  48. for each repo/tag on an image, each image is only represented once, with a
  49. nested attribute indicating the repo/tags that apply to that image.
  50. Instead of:
  51. .. sourcecode:: http
  52. HTTP/1.1 200 OK
  53. Content-Type: application/json
  54. [
  55. {
  56. "VirtualSize": 131506275,
  57. "Size": 131506275,
  58. "Created": 1365714795,
  59. "Id": "8dbd9e392a964056420e5d58ca5cc376ef18e2de93b5cc90e868a1bbc8318c1c",
  60. "Tag": "12.04",
  61. "Repository": "ubuntu"
  62. },
  63. {
  64. "VirtualSize": 131506275,
  65. "Size": 131506275,
  66. "Created": 1365714795,
  67. "Id": "8dbd9e392a964056420e5d58ca5cc376ef18e2de93b5cc90e868a1bbc8318c1c",
  68. "Tag": "latest",
  69. "Repository": "ubuntu"
  70. },
  71. {
  72. "VirtualSize": 131506275,
  73. "Size": 131506275,
  74. "Created": 1365714795,
  75. "Id": "8dbd9e392a964056420e5d58ca5cc376ef18e2de93b5cc90e868a1bbc8318c1c",
  76. "Tag": "precise",
  77. "Repository": "ubuntu"
  78. },
  79. {
  80. "VirtualSize": 180116135,
  81. "Size": 24653,
  82. "Created": 1364102658,
  83. "Id": "b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc",
  84. "Tag": "12.10",
  85. "Repository": "ubuntu"
  86. },
  87. {
  88. "VirtualSize": 180116135,
  89. "Size": 24653,
  90. "Created": 1364102658,
  91. "Id": "b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc",
  92. "Tag": "quantal",
  93. "Repository": "ubuntu"
  94. }
  95. ]
  96. The returned json looks like this:
  97. .. sourcecode:: http
  98. HTTP/1.1 200 OK
  99. Content-Type: application/json
  100. [
  101. {
  102. "RepoTag": [
  103. "ubuntu:12.04",
  104. "ubuntu:precise",
  105. "ubuntu:latest"
  106. ],
  107. "Id": "8dbd9e392a964056420e5d58ca5cc376ef18e2de93b5cc90e868a1bbc8318c1c",
  108. "Created": 1365714795,
  109. "Size": 131506275,
  110. "VirtualSize": 131506275
  111. },
  112. {
  113. "RepoTag": [
  114. "ubuntu:12.10",
  115. "ubuntu:quantal"
  116. ],
  117. "ParentId": "27cf784147099545",
  118. "Id": "b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc",
  119. "Created": 1364102658,
  120. "Size": 24653,
  121. "VirtualSize": 180116135
  122. }
  123. ]
  124. .. http:get:: /images/viz
  125. This URI no longer exists. The ``images -viz`` output is now generated in
  126. the client, using the ``/images/json`` data.
  127. v1.6
  128. ****
  129. Full Documentation
  130. ------------------
  131. :doc:`docker_remote_api_v1.6`
  132. What's new
  133. ----------
  134. .. http:post:: /containers/(id)/attach
  135. **New!** You can now split stderr from stdout. This is done by prefixing
  136. a header to each transmition. See :http:post:`/containers/(id)/attach`.
  137. The WebSocket attach is unchanged.
  138. Note that attach calls on the previous API version didn't change. Stdout and
  139. stderr are merged.
  140. v1.5
  141. ****
  142. Full Documentation
  143. ------------------
  144. :doc:`docker_remote_api_v1.5`
  145. What's new
  146. ----------
  147. .. http:post:: /images/create
  148. **New!** You can now pass registry credentials (via an AuthConfig object)
  149. through the `X-Registry-Auth` header
  150. .. http:post:: /images/(name)/push
  151. **New!** The AuthConfig object now needs to be passed through
  152. the `X-Registry-Auth` header
  153. .. http:get:: /containers/json
  154. **New!** The format of the `Ports` entry has been changed to a list of
  155. dicts each containing `PublicPort`, `PrivatePort` and `Type` describing a
  156. port mapping.
  157. v1.4
  158. ****
  159. Full Documentation
  160. ------------------
  161. :doc:`docker_remote_api_v1.4`
  162. What's new
  163. ----------
  164. .. http:post:: /images/create
  165. **New!** When pulling a repo, all images are now downloaded in parallel.
  166. .. http:get:: /containers/(id)/top
  167. **New!** You can now use ps args with docker top, like `docker top <container_id> aux`
  168. .. http:get:: /events:
  169. **New!** Image's name added in the events
  170. v1.3
  171. ****
  172. docker v0.5.0 51f6c4a_
  173. Full Documentation
  174. ------------------
  175. :doc:`docker_remote_api_v1.3`
  176. What's new
  177. ----------
  178. .. http:get:: /containers/(id)/top
  179. List the processes running inside a container.
  180. .. http:get:: /events:
  181. **New!** Monitor docker's events via streaming or via polling
  182. Builder (/build):
  183. - Simplify the upload of the build context
  184. - Simply stream a tarball instead of multipart upload with 4
  185. intermediary buffers
  186. - Simpler, less memory usage, less disk usage and faster
  187. .. Warning::
  188. The /build improvements are not reverse-compatible. Pre 1.3 clients
  189. will break on /build.
  190. List containers (/containers/json):
  191. - You can use size=1 to get the size of the containers
  192. Start containers (/containers/<id>/start):
  193. - You can now pass host-specific configuration (e.g. bind mounts) in
  194. the POST body for start calls
  195. v1.2
  196. ****
  197. docker v0.4.2 2e7649b_
  198. Full Documentation
  199. ------------------
  200. :doc:`docker_remote_api_v1.2`
  201. What's new
  202. ----------
  203. The auth configuration is now handled by the client.
  204. The client should send it's authConfig as POST on each call of
  205. /images/(name)/push
  206. .. http:get:: /auth
  207. **Deprecated.**
  208. .. http:post:: /auth
  209. Only checks the configuration but doesn't store it on the server
  210. Deleting an image is now improved, will only untag the image if it
  211. has children and remove all the untagged parents if has any.
  212. .. http:post:: /images/<name>/delete
  213. Now returns a JSON structure with the list of images
  214. deleted/untagged.
  215. v1.1
  216. ****
  217. docker v0.4.0 a8ae398_
  218. Full Documentation
  219. ------------------
  220. :doc:`docker_remote_api_v1.1`
  221. What's new
  222. ----------
  223. .. http:post:: /images/create
  224. .. http:post:: /images/(name)/insert
  225. .. http:post:: /images/(name)/push
  226. Uses json stream instead of HTML hijack, it looks like this:
  227. .. sourcecode:: http
  228. HTTP/1.1 200 OK
  229. Content-Type: application/json
  230. {"status":"Pushing..."}
  231. {"status":"Pushing", "progress":"1/? (n/a)"}
  232. {"error":"Invalid..."}
  233. ...
  234. v1.0
  235. ****
  236. docker v0.3.4 8d73740_
  237. Full Documentation
  238. ------------------
  239. :doc:`docker_remote_api_v1.0`
  240. What's new
  241. ----------
  242. Initial version
  243. .. _a8ae398: https://github.com/dotcloud/docker/commit/a8ae398bf52e97148ee7bd0d5868de2e15bd297f
  244. .. _8d73740: https://github.com/dotcloud/docker/commit/8d73740343778651c09160cde9661f5f387b36f4
  245. .. _2e7649b: https://github.com/dotcloud/docker/commit/2e7649beda7c820793bd46766cbc2cfeace7b168
  246. .. _51f6c4a: https://github.com/dotcloud/docker/commit/51f6c4a7372450d164c61e0054daf0223ddbd909