We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31b0b07 commit 3fa0fc9Copy full SHA for 3fa0fc9
core/README.rst
@@ -13,7 +13,6 @@ Conjoint usage:
13
>>> from testcontainers.core.container import DockerContainer
14
>>> from testcontainers.core.waiting_utils import wait_for_logs
15
>>> from testcontainers.core.image import DockerImage
16
-
17
>>> with DockerImage(tag="test-image:latest", path=".") as image:
18
... with DockerContainer(tag=image.tag) as container:
19
... delay = wait_for_log(container, "Server ready", 60)
core/testcontainers/core/image.py
@@ -17,7 +17,6 @@ class DockerImage:
.. doctest::
20
21
>>> with DockerImage(path=".", tag="new_image") as image:
22
... logs = image.get_logs()
23
0 commit comments