From 8dd51982bdc423568dbd346c3e95f41ae9f9e181 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Tue, 15 Nov 2016 19:45:20 +0000 Subject: [PATCH] Rename Remote API to Engine API Implementation of https://github.com/docker/docker/issues/28319 Signed-off-by: Ben Firshman Upstream-commit: 9c9ae79e64a7b6c83c16cc89cc021cf19b41f7f7 Component: cli --- components/cli/README.md | 2 +- components/cli/client.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/cli/README.md b/components/cli/README.md index 161686c0a6..059dfb3ce7 100644 --- a/components/cli/README.md +++ b/components/cli/README.md @@ -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. diff --git a/components/cli/client.go b/components/cli/client.go index a85b392674..31a311e7d5 100644 --- a/components/cli/client.go +++ b/components/cli/client.go @@ -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 be used by your own Go applications to do anything the command-line interface does - running containers, pulling images, managing swarms, etc. -For more information about the Remote API, see the documentation: -https://docs.docker.com/engine/reference/api/docker_remote_api/ +For more information about the Engine API, see the documentation: +https://docs.docker.com/engine/reference/api/ Usage