mirror of https://github.com/docker/docker-py.git
Removed trailing whitespace in docs
This commit is contained in:
parent
8df3a3f5ae
commit
bf077ace10
|
@ -12,5 +12,4 @@ Our latest stable is always available on PyPi.
|
||||||
Full documentation is available in the `/docs/` directory.
|
Full documentation is available in the `/docs/` directory.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
Docker is licensed under the Apache License, Version 2.0. See LICENSE for full
|
Docker is licensed under the Apache License, Version 2.0. See LICENSE for full license text
|
||||||
license text
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Using volumes
|
# Using volumes
|
||||||
|
|
||||||
Volume declaration is done in two parts. First, you have to provide a list of
|
Volume declaration is done in two parts. First, you have to provide
|
||||||
mountpoints to the `Client().create_container()` method.
|
a list of mountpoints to the `Client().create_container()` method.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
c.create_container('busybox', 'ls', volumes=['/mnt/vol1', '/mnt/vol2'])
|
c.create_container('busybox', 'ls', volumes=['/mnt/vol1', '/mnt/vol2'])
|
||||||
|
|
Loading…
Reference in New Issue