We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cd7e66 commit e017310Copy full SHA for e017310
1 file changed
src/Dibix.Testing/TestContainers/TestContainerExtensions.cs
@@ -48,7 +48,7 @@ public static async Task LogDockerRunDebugStatement(this IContainerConfiguration
48
}
49
50
if (mounts.Any())
51
- sb.Append($" {string.Join(" ", mounts.Select(x => $"--volume \"{x.Source}\":\"{x.Target}\"{(x.BindOptions?.Propagation != null ? $":{x.BindOptions.Propagation}" : null)}"))}");
+ sb.Append($" {string.Join(" ", mounts.Select(x => $"--volume \"{x.Source}:{x.Target}\"{(x.BindOptions?.Propagation != null ? $":{x.BindOptions.Propagation}" : null)}"))}");
52
53
if (configuration.Environments.Any())
54
sb.Append($" {string.Join(" ", configuration.Environments.Select(x => $"--env {x.Key}=\"{MaskSecrets(x.Value)}\""))}");
0 commit comments