Skip to content

Commit

Permalink
docs(core): Add an example for configuring a custom DockerContainer w…
Browse files Browse the repository at this point in the history
…ith exposed port and environment variable
  • Loading branch information
vemonet committed Oct 3, 2024
1 parent 85d6078 commit 0c1c881
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions core/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,18 @@ Using `DockerContainer` and `DockerImage` to create a container:

The `DockerImage` class is used to build the image from the specified path and tag.
The `DockerContainer` class is then used to create a container from the image.


Creating a container with an exposed port and a custom environment variable:

.. doctest::

>>> from testcontainers.core.container import DockerContainer
>>> from testcontainers.core.waiting_utils import wait_for_logs

>>> container = DockerContainer("stain/jena-fuseki:latest")
>>> container.with_exposed_ports(3030)
>>> container.with_env("ADMIN_PASSWORD", "password")
>>> container.start()
>>> delay = wait_for_logs(container, "Fuseki is available")
>>> container_url = f"http://{container.get_container_host_ip()}:{container.get_exposed_port(3030)}"

0 comments on commit 0c1c881

Please sign in to comment.