testcontainers-python
testcontainers-python copied to clipboard
Testcontainers is a Python library that providing a friendly API to run Docker container. It is designed to create runtime environment to use during your automatic tests.
**What are you trying to do?** Under Bazel, or other local-only build systems, an image is constructed as a series of layers which are only on the disk, not pushed...
**Describe the bug** Launching MongoDB Testcontainer in GitLab with dind yields error: "Exception: port mapping for container xxxx and port 27017 is not available" - i.e.: "testcontainers.core.exceptions.TimeoutException: Wait time (120s)...
**Describe the bug** Where docker did not started on running tests pc i get message ``` AttributeError: 'RedisContainer' object has no attribute '_container' ``` That is not informative **To Reproduce**...
**Describe the bug** Tried running: ``` compose = DockerCompose( dir_name, compose_file_name="docker-compose.yaml", pull=True, build=True ) compose.start() ``` but nothing happened, checked logs with ` compose.get_logs() ` got "got an unexpected keyword...
I'm unable to run the SqlServerContainer. After creating the MSSQL container, it gets stuck at the "waiting to be ready" state and does not proceed further.  **To Reproduce** ```python...
Added support for [InterSystems IRIS](https://www.intersystems.com/data-platform/) Community Edition docker images
Please add docs for the Generic Container. Thanks!
Adding a windows build as in #309 is not currently possible because `windows-latest` does not support running linux-based images (cf. https://github.com/actions/runner-images/issues/1143). The same seems to be true for CircleCI (see...
**Describe the bug** On newer docker setups, docker-compose is part of docker under a docker sub commands: `docker compose` This makes this library fail to find `docker-compose` when needed. For...
I think we should have a larger discussion in this repo on what we actually want to support in custom container setups, as making the implementation support all versions since...