Showing tag results for Docker

Jul 21, 2025
Post comments count0
Post likes count2

Integration testing for Go applications using Testcontainers and containerized databases

Abhishek Gupta
Abhishek Gupta

Integration testing has always presented a fundamental challenge: how do you test your application against real dependencies without the complexity of managing external services? Traditional approaches often involve either mocking dependencies (which can miss integration issues) or maintaining separate test environments (which can be expensive and ...

Go SDKAzure Cosmos DB for NoSQL
Feb 5, 2025
Post comments count0
Post likes count3

Use Azure Cosmos DB as a Docker container in CI/CD pipelines

Abhishek Gupta
Abhishek Gupta

There are lot of benefits to using Docker containers in CI/CD pipelines, especially for stateful systems like databases. For example, when you run integration tests, each CI job can start the database in an isolated container with a clean state, preventing conflicts between tests. This results in a testing environment that is reliable, consistent, ...

Azure Cosmos DB for NoSQL