-
-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: MSSQL containers is not running on Ubuntu 22.04.5 #1264
Comments
This is a regression in the recent VM image update (
|
Is this still an issue? I've been seeing problems since I noticed Ubuntu 22.04.5 running in azure pipelines with testcontainers. 22.04.4 was/is working fine. Seems like it is having trouble starting/verifying sql server
|
I confirmed this is still an issue. I just saw it was merged, wasn't sure if a release has been published or not. Anyhow, specifying |
Just a note... WithImage("mcr.microsoft.com/mssql/server:2022-CU14-ubuntu-22.04") seemed to work most of my pipeline builds using Ubunutu 22.04.5. I did see at least one instance where the SQL server container was timing out on startup. But it cleared up after stopping the pipeline and starting a new instance |
Testcontainers version
3.10.0
Using the latest Testcontainers version?
Yes
Host OS
Ubuntu 22.04 OS Version: 22.04.5 LTS Kernel Version: 6.8.0-1014-azure Image Version: 20240915.1.0 Systemd version: 249.11-0ubuntu3.12
Host arch
x86
.NET version
8.0.401
Docker version
Docker info
What happened?
MsSqlContainer has started failing when running on Ubuntu 22.04.5 LTS before I was running on Ubuntu 22.04.4 LTS without any issues.
Relevant log output
Additional information
It fails when I call the MsSqlBuilder StartAsync() method:
` public TestcontainersTestDatabase()
{
_container = new MsSqlBuilder()
.WithAutoRemove(true)
.Build();
}
The text was updated successfully, but these errors were encountered: