diff options
-rw-r--r-- | docker/models/containers.py | 1 | ||||
-rw-r--r-- | docs/images.rst | 12 |
2 files changed, 8 insertions, 5 deletions
diff --git a/docker/models/containers.py b/docker/models/containers.py index a674393..107a020 100644 --- a/docker/models/containers.py +++ b/docker/models/containers.py @@ -592,6 +592,7 @@ class ContainerCollection(Collection): - ``container:<name|id>`` Reuse another container's network stack. - ``host`` Use the host network stack. + Incompatible with ``network``. oom_kill_disable (bool): Whether to disable OOM killer. oom_score_adj (int): An integer value containing the score given diff --git a/docs/images.rst b/docs/images.rst index 3ba0601..12b0fd1 100644 --- a/docs/images.rst +++ b/docs/images.rst @@ -26,14 +26,16 @@ Image objects .. autoclass:: Image() -.. py:attribute:: attrs -.. autoattribute:: id -.. autoattribute:: labels -.. autoattribute:: short_id -.. autoattribute:: tags + .. py:attribute:: attrs The raw representation of this object from the server. + .. autoattribute:: id + .. autoattribute:: labels + .. autoattribute:: short_id + .. autoattribute:: tags + + .. automethod:: history .. automethod:: reload |