testcontainers-python ===================== .. image:: https://github.com/testcontainers/testcontainers-python/actions/workflows/ci-core.yml/badge.svg :target: https://github.com/testcontainers/testcontainers-python/actions/workflows/ci-core.yml .. image:: https://img.shields.io/pypi/v/testcontainers.svg :target: https://pypi.python.org/pypi/testcontainers .. image:: https://readthedocs.org/projects/testcontainers-python/badge/?version=latest :target: http://testcontainers-python.readthedocs.io/en/latest/?badge=latest .. image:: https://github.com/codespaces/badge.svg :target: https://codespaces.new/testcontainers/testcontainers-python testcontainers-python facilitates the use of Docker containers for functional and integration testing. The collection of packages currently supports the following features. .. toctree:: core/README modules/arangodb/README modules/azurite/README modules/cassandra/README modules/chroma/README modules/clickhouse/README modules/elasticsearch/README modules/google/README modules/influxdb/README modules/k3s/README modules/kafka/README modules/keycloak/README modules/localstack/README modules/minio/README modules/mongodb/README modules/mssql/README modules/mysql/README modules/nats/README modules/neo4j/README modules/nginx/README modules/opensearch/README modules/oracle-free/README modules/postgres/README modules/qdrant/README modules/rabbitmq/README modules/redis/README modules/registry/README modules/selenium/README modules/vault/README modules/weaviate/README Getting Started --------------- .. doctest:: >>> from testcontainers.postgres import PostgresContainer >>> import sqlalchemy >>> with PostgresContainer("postgres:16") as postgres: ... psql_url = postgres.get_connection_url() ... engine = sqlalchemy.create_engine(psql_url) ... with engine.begin() as connection: ... version, = connection.execute(sqlalchemy.text("SELECT version()")).fetchone() >>> version 'PostgreSQL 16...' The snippet above will spin up the current latest version of a postgres database in a container. The :code:`get_connection_url()` convenience method returns a :code:`sqlalchemy` compatible url (using the :code:`psycopg2` driver per default) to connect to the database and retrieve the database version. .. doctest:: >>> from testcontainers.postgres import PostgresContainer >>> import psycopg >>> with PostgresContainer("postgres:16", driver=None) as postgres: ... psql_url = postgres.get_connection_url() ... with psycopg.connect(psql_url) as connection: ... with connection.cursor() as cursor: ... version, = cursor.execute("SELECT version()").fetchone() >>> version 'PostgreSQL 16...' This snippet does the same, however using a specific version and the driver is set to None, to influence the :code:`get_connection_url()` convenience method to not include a driver in the URL (e.g. for compatibility with :code:`psycopg` v3). Note, that the :code:`sqlalchemy` and :code:`psycopg` packages are no longer a dependency of :code:`testcontainers[postgres]` and not needed to launch the Postgres container. Your project therefore needs to declare a dependency on the used driver and db access methods you use in your code. By default, Testcontainers will search for the container via the gateway IP. You can manually specify your own IP with the environment variable `TESTCONTAINERS_HOST_OVERRIDE`. Installation ------------ The suite of testcontainers packages is available on `PyPI `_, and individual packages can be installed using :code:`pip`. Version `4.0.0` onwards we do not support the `testcontainers-*` packages as it is unsutainable to maintain ownership. Instead packages can be installed by specifying `extras `__, e.g., :code:`pip install testcontainers[postgres]`. Docker in Docker (DinD) ----------------------- When trying to launch a testcontainer from within a Docker container, e.g., in continuous integration testing, two things have to be provided: 1. The container has to provide a docker client installation. Either use an image that has docker pre-installed (e.g. the `official docker images `_) or install the client from within the `Dockerfile` specification. 2. The container has to have access to the docker daemon which can be achieved by mounting `/var/run/docker.sock` or setting the `DOCKER_HOST` environment variable as part of your `docker run` command. Configuration ------------- +-------------------------------------------+-------------------------------+------------------------------------------+ | Env Variable | Example | Description | +===========================================+===============================+==========================================+ | ``TESTCONTAINERS_DOCKER_SOCKET_OVERRIDE`` | ``/var/run/docker.sock`` | Path to Docker's socket used by ryuk | +-------------------------------------------+-------------------------------+------------------------------------------+ | ``TESTCONTAINERS_RYUK_PRIVILEGED`` | ``false`` | Run ryuk as a privileged container | +-------------------------------------------+-------------------------------+------------------------------------------+ | ``TESTCONTAINERS_RYUK_DISABLED`` | ``false`` | Disable ryuk | +-------------------------------------------+-------------------------------+------------------------------------------+ | ``RYUK_CONTAINER_IMAGE`` | ``testcontainers/ryuk:0.7.0`` | Custom image for ryuk | +-------------------------------------------+-------------------------------+------------------------------------------+ Development and Contributing ---------------------------- We recommend you use a `virtual environment `_ for development (:code:`python>=3.7` is required). After setting up your virtual environment, you can install all dependencies and test the installation by running the following snippet. .. code-block:: bash poetry install --all-extras make /tests Package Structure ^^^^^^^^^^^^^^^^^ Testcontainers is a collection of `implicit namespace packages `__ to decouple the development of different extensions, e.g., :code:`testcontainers-mysql` and :code:`testcontainers-postgres` for MySQL and PostgreSQL database containers, respectively. The folder structure is as follows. .. code-block:: bash modules # One folder per feature. [feature name] # Folder without __init__.py for implicit namespace packages. testcontainers # Implementation as namespace package with __init__.py. [feature name] __init__.py # Other files for this ... # Tests for the feature. tests test_[some_aspect_for_the_feature].py ... # README for this feature. README.rst # Setup script for this feature. setup.py Contributing a New Feature ^^^^^^^^^^^^^^^^^^^^^^^^^^ You want to contribute a new feature or container? Great! You can do that in six steps as outlined `here __`.