Change "Remote API" to "Engine API"

This is currently inconsistent, but mostly called "Engine API".
For the release of Docker 1.13, this will be "Engine API" all
over the Engine documentation, too.

Signed-off-by: Ben Firshman <ben@firshman.co.uk>
This commit is contained in:
Ben Firshman 2016-12-14 11:57:19 +00:00
parent d1b51c3967
commit 00de2055f9
No known key found for this signature in database
GPG Key ID: 18296449E36D2F1E
5 changed files with 6 additions and 6 deletions

View File

@ -50,7 +50,7 @@ class APIClient(
SwarmApiMixin, SwarmApiMixin,
VolumeApiMixin): VolumeApiMixin):
""" """
A low-level client for the Docker Remote API. A low-level client for the Docker Engine API.
Example: Example:

View File

@ -108,7 +108,7 @@ class ContainerApiMixin(object):
author (str): The name of the author author (str): The name of the author
changes (str): Dockerfile instructions to apply while committing changes (str): Dockerfile instructions to apply while committing
conf (dict): The configuration for the container. See the conf (dict): The configuration for the container. See the
`Remote API documentation `Engine API documentation
<https://docs.docker.com/reference/api/docker_remote_api/>`_ <https://docs.docker.com/reference/api/docker_remote_api/>`_
for full details. for full details.

View File

@ -78,7 +78,7 @@ class Container(Model):
author (str): The name of the author author (str): The name of the author
changes (str): Dockerfile instructions to apply while committing changes (str): Dockerfile instructions to apply while committing
conf (dict): The configuration for the container. See the conf (dict): The configuration for the container. See the
`Remote API documentation `Engine API documentation
<https://docs.docker.com/reference/api/docker_remote_api/>`_ <https://docs.docker.com/reference/api/docker_remote_api/>`_
for full details. for full details.

View File

@ -139,7 +139,7 @@ html_theme = 'alabaster'
# documentation. # documentation.
# #
html_theme_options = { html_theme_options = {
'description': 'A Python library for the Docker Remote API', 'description': 'A Python library for the Docker Engine API',
'fixed_sidebar': True, 'fixed_sidebar': True,
} }

View File

@ -1,9 +1,9 @@
Docker SDK for Python Docker SDK for Python
===================== =====================
A Python library for the Docker Remote API. It lets you do anything the ``docker`` command does, but from within Python apps run containers, manage containers, manage Swarms, etc. A Python library for the Docker Engine API. It lets you do anything the ``docker`` command does, but from within Python apps run containers, manage containers, manage Swarms, etc.
For more information about the Remote API, `see its documentation <https://docs.docker.com/engine/reference/api/docker_remote_api/>`_. For more information about the Engine API, `see its documentation <https://docs.docker.com/engine/reference/api/docker_remote_api/>`_.
Installation Installation
------------ ------------