We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4743b63 commit dc21a00Copy full SHA for dc21a00
src/Core/TestcontainersDockerManager.cs
@@ -173,7 +173,7 @@ private async Task PopulateInstanceDetailsAsync()
173
}
174
175
Instance.Id = _container.Id;
176
- Instance.Name = _container.Name;
+ Instance.Name = _container.Name.TrimStart('/');
177
Instance.IsRunning = _container.State == TestcontainersStates.Running;
178
179
// Get the mapped port for the main internal port
0 commit comments