diff options
author | Joffrey F <joffrey@docker.com> | 2016-11-23 15:15:58 -0800 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2016-11-28 15:28:04 -0800 |
commit | f5ac10c469fca252e69ae780749f4ec6fe369789 (patch) | |
tree | edd59b15fb03c7ce68187fbd8a41dd00f0d19537 /docs/client.rst | |
parent | c66c7f8b0a8ca216e21c9fe1903eb79f4406a93e (diff) | |
download | docker-py-docker_client.tar.gz |
Rename Client -> DockerClientdocker_client
Replace references to old Client with APIClient
Moved contents of services.md to appropriate locations
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'docs/client.rst')
-rw-r--r-- | docs/client.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/client.rst b/docs/client.rst index cd058fc..63bce2c 100644 --- a/docs/client.rst +++ b/docs/client.rst @@ -6,14 +6,14 @@ Client Creating a client ----------------- -To communicate with the Docker daemon, you first need to instantiate a client. The easiest way to do that is by calling the function :py:func:`~docker.client.from_env`. It can also be configured manually by instantiating a :py:class:`~docker.client.Client` class. +To communicate with the Docker daemon, you first need to instantiate a client. The easiest way to do that is by calling the function :py:func:`~docker.client.from_env`. It can also be configured manually by instantiating a :py:class:`~docker.client.DockerClient` class. .. autofunction:: from_env() Client reference ---------------- -.. autoclass:: Client() +.. autoclass:: DockerClient() .. autoattribute:: containers .. autoattribute:: images |