Hello there,
Iridium SQL looks very promising, especially with its TDS compatibility.
It would be very useful to have an official lightweight Docker image to support integration testing workflows, particularly with tools like Testcontainers. This would make it much easier to adopt Iridium SQL as a drop-in dependency for automated tests that expect a SQL Server–compatible endpoint.
This would significantly improve usability in CI pipelines and local development.
Real life example:
_msSqlContainer = new MsSqlBuilder("mcr.microsoft.com/mssql/server:2022-CU14-ubuntu-22.04").Build(); // I would use Iridium at this line
await _msSqlContainer.StartAsync();
Thanks
Hello there,
Iridium SQL looks very promising, especially with its TDS compatibility.
It would be very useful to have an official lightweight Docker image to support integration testing workflows, particularly with tools like Testcontainers. This would make it much easier to adopt Iridium SQL as a drop-in dependency for automated tests that expect a SQL Server–compatible endpoint.
This would significantly improve usability in CI pipelines and local development.
Real life example:
Thanks