mirror of https://github.com/docker/cli.git
Merge pull request #28506 from bfirsh/prepare-api-docs-for-swagger-docs
Prepare docs and Swagger definition for automatically generated API docs
This commit is contained in:
commit
36a1664cd4
|
@ -1,4 +1,4 @@
|
||||||
# Go client for the Docker Remote API
|
# Go client for the Docker Engine API
|
||||||
|
|
||||||
The `docker` command uses this package to communicate with the daemon. It can also be used by your own Go applications to do anything the command-line interface does – running containers, pulling images, managing swarms, etc.
|
The `docker` command uses this package to communicate with the daemon. It can also be used by your own Go applications to do anything the command-line interface does – running containers, pulling images, managing swarms, etc.
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
/*
|
/*
|
||||||
Package client is a Go client for the Docker Remote API.
|
Package client is a Go client for the Docker Engine API.
|
||||||
|
|
||||||
The "docker" command uses this package to communicate with the daemon. It can also
|
The "docker" command uses this package to communicate with the daemon. It can also
|
||||||
be used by your own Go applications to do anything the command-line interface does
|
be used by your own Go applications to do anything the command-line interface does
|
||||||
- running containers, pulling images, managing swarms, etc.
|
- running containers, pulling images, managing swarms, etc.
|
||||||
|
|
||||||
For more information about the Remote API, see the documentation:
|
For more information about the Engine API, see the documentation:
|
||||||
https://docs.docker.com/engine/reference/api/docker_remote_api/
|
https://docs.docker.com/engine/reference/api/
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue