testcontainers-node icon indicating copy to clipboard operation
testcontainers-node copied to clipboard

Testcontainers is a NodeJS library that supports tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container.

Results 110 testcontainers-node issues
Sort by recently updated
recently updated
newest added

**Intro** Python, Ruby, and Go implementations support [TC_HOST](https://github.com/search?q=org%3Atestcontainers%20TC_HOST&type=code) env variable. This is a logical naming convention for those who are not using Docker as their runtime containers. Currently, Node implementation...

enhancement

**Expected Behaviour** If a container runtime strategy does not work I would expect the root cause to be logged. **Actual Behaviour** You get a message that the container runtime strategy...

enhancement

**Expected Behaviour** In addition to the support of start only selected services present in docker compose stack with : ```javascript new DockerComposeEnvironment("docker-compose.yml").up(["my_service"]); ``` It will be useful to support the...

enhancement

Hi, Docker API has 2 ways to authenticate which is user/pass and identity token. Docker auth document: https://docs.docker.com/engine/api/v1.43/#section/Authentication When docker cli store identity token in secret store, it will store...

enhancement

The Docker API for copying an archive to a container has a flag [CopyUIDGID](https://docs.docker.com/engine/api/v1.43/#tag/Container/operation/PutContainerArchive). You could therefore chown a file locally to whatever UID/GID required, and this ownership will be...

enhancement

It seems that `node-fetch` v2.x is causing `DeprecationWarning` on Node22 (maybe in Node21 too?) due usage of deprecated punycode module. `node-fetch` 2.x is only receiving security fixes so this issue...

maintenance
minor

Hello, I have some test running with Tap js. On test startup I start all the containers I need with testcontainers (10.9.0), and it's all working fine. The problem is...

- Added additional examples of how to use Chroma - Updated documentation with relevant project links - Version bumps wherever possible to ensure the default user experience is up to...

maintenance
patch

When creating a container using a docker image from a private repository, testcontainers would fail to auth correctly, and would never fetch the image. i.e., `FROM gcr.io/` would fail. This...

bug
patch

**Expected Behaviour** redpanda container should start **Actual Behaviour** Redpanda container does not start Error: ENOENT: no such file or directory, open '/Users/avishek/Goldsky/goldsky/node_modules/.pnpm/@[email protected]/node_modules/@testcontainers/redpanda/build/redpanda.yaml.hbs' **Testcontainer Logs** ... **Steps to Reproduce** * npm...

triage