File tree Expand file tree Collapse file tree
Shared.IntegrationTesting Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -754,7 +754,12 @@ public static IContainerService SetupMessagingServiceContainer(String containerN
754754
755755 ContainerBuilder messagingServiceContainer = new Builder ( ) . UseContainer ( ) . WithName ( containerName ) . WithEnvironment ( environmentVariables . ToArray ( ) )
756756 . UseImage ( imageName , forceLatestImage ) . ExposePort ( DockerHelper . MessagingServiceDockerPort )
757- . UseNetwork ( networkServices . ToArray ( ) ) . Mount ( hostFolder , "/home" , MountType . ReadWrite ) ;
757+ . UseNetwork ( networkServices . ToArray ( ) ) ; //.Mount(hostFolder, "/home", MountType.ReadWrite);
758+
759+ if ( String . IsNullOrEmpty ( hostFolder ) == false )
760+ {
761+ messagingServiceContainer = messagingServiceContainer . Mount ( hostFolder , "/home/txnproc/trace" , MountType . ReadWrite ) ;
762+ }
758763
759764 if ( dockerCredentials . HasValue )
760765 {
You can’t perform that action at this time.
0 commit comments