View Source Testcontainers (testcontainers v1.11.6)

The main entry point into Testcontainers.

This is a GenServer that needs to be started before anything can happen.

Summary

Functions

Returns a specification to start this module under a supervisor.

Starts a new container based on the provided configuration, applying any specified wait strategies.

Functions

Returns a specification to start this module under a supervisor.

See Supervisor.

Link to this function

start_container(config_builder, name \\ __MODULE__)

View Source

Starts a new container based on the provided configuration, applying any specified wait strategies.

This function performs several steps:

  1. Pulls the necessary Docker image.
  2. Creates and starts a container with the specified configuration.
  3. Registers the container with a reaper process for automatic cleanup, ensuring it is stopped and removed when the current process exits or in case of unforeseen failures.

Parameters

  • config: A %Container{} struct containing the configuration settings for the container, such as the image to use, environment variables, bound ports, and volume bindings.

Examples

iex> config = Testcontainers.MySqlContainer.new()
iex> {:ok, container} = Testcontainers.start_container(config)

Returns

  • {:ok, container} if the container is successfully created, started, and passes all wait strategies.
  • An error tuple, such as {:error, reason}, if there is a failure at any step in the process.

Notes

  • The container is automatically registered with a reaper process, ensuring it is stopped and removed when the current process exits, or in the case of unforeseen failures.
  • It's important to specify appropriate wait strategies to ensure the container is fully ready for interaction, especially for containers that may take some time to start up services internally.
Link to this function

start_link(options \\ [])

View Source
Link to this function

stop_container(container_id, name \\ __MODULE__)

View Source

Stops a running container.

This sends a stop command to the specified container. The Docker daemon terminates the container process gracefully.

Parameters

  • container_id: The ID of the container to stop, as a string.

Returns

  • :ok if the container stops successfully.
  • {:error, reason} on failure.

Examples

:ok = Testcontainers.Connection.stop_container("my_container_id")