summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Jackson <usbrandon@gmail.com>2017-07-18 09:35:31 -0500
committerJoffrey F <f.joffrey@gmail.com>2017-08-17 13:38:40 -0700
commit9abcaccb89fe5767e541061befc1d24c64380243 (patch)
treed56883cb1851b734740fa2b7d8c6f22340eee974
parenta23cd3d8e874635718e93b121dec58a08c8f766c (diff)
downloaddocker-py-9abcaccb89fe5767e541061befc1d24c64380243.tar.gz
By not specifying a specific tag, the example would download every Ubuntu tag that exists.
This oversight caused my machine to run out of disk space holding all the image diffs. Signed-off-by: Brandon Jackson <usbrandon@gmail.com>
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 38963b3..747b98b 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ client = docker.from_env()
You can run containers:
```python
->>> client.containers.run("ubuntu", "echo hello world")
+>>> client.containers.run("ubuntu:latest", "echo hello world")
'hello world\n'
```