@@ -108,34 +108,34 @@ static TestcontainersSettings()
108
108
[ CanBeNull ]
109
109
public static string DockerHostOverride { get ; set ; }
110
110
= DockerEndpointAuthProvider is ICustomConfiguration config
111
- ? config . GetDockerHostOverride ( ) : PropertiesFileConfiguration . Instance . GetDockerHostOverride ( ) ?? EnvironmentConfiguration . Instance . GetDockerHostOverride ( ) ;
111
+ ? config . GetDockerHostOverride ( ) : EnvironmentConfiguration . Instance . GetDockerHostOverride ( ) ?? PropertiesFileConfiguration . Instance . GetDockerHostOverride ( ) ;
112
112
113
113
/// <summary>
114
114
/// Gets or sets the Docker socket override value.
115
115
/// </summary>
116
116
[ CanBeNull ]
117
117
public static string DockerSocketOverride { get ; set ; }
118
118
= DockerEndpointAuthProvider is ICustomConfiguration config
119
- ? config . GetDockerSocketOverride ( ) : PropertiesFileConfiguration . Instance . GetDockerSocketOverride ( ) ?? EnvironmentConfiguration . Instance . GetDockerSocketOverride ( ) ;
119
+ ? config . GetDockerSocketOverride ( ) : EnvironmentConfiguration . Instance . GetDockerSocketOverride ( ) ?? PropertiesFileConfiguration . Instance . GetDockerSocketOverride ( ) ;
120
120
121
121
/// <summary>
122
122
/// Gets or sets a value indicating whether the <see cref="ResourceReaper" /> is enabled or not.
123
123
/// </summary>
124
124
public static bool ResourceReaperEnabled { get ; set ; }
125
- = ! PropertiesFileConfiguration . Instance . GetRyukDisabled ( ) && ! EnvironmentConfiguration . Instance . GetRyukDisabled ( ) ;
125
+ = ! EnvironmentConfiguration . Instance . GetRyukDisabled ( ) && ! PropertiesFileConfiguration . Instance . GetRyukDisabled ( ) ;
126
126
127
127
/// <summary>
128
128
/// Gets or sets a value indicating whether the <see cref="ResourceReaper" /> privileged mode is enabled or not.
129
129
/// </summary>
130
130
public static bool ResourceReaperPrivilegedModeEnabled { get ; set ; }
131
- = PropertiesFileConfiguration . Instance . GetRyukContainerPrivileged ( ) || EnvironmentConfiguration . Instance . GetRyukContainerPrivileged ( ) ;
131
+ = EnvironmentConfiguration . Instance . GetRyukContainerPrivileged ( ) || PropertiesFileConfiguration . Instance . GetRyukContainerPrivileged ( ) ;
132
132
133
133
/// <summary>
134
134
/// Gets or sets the <see cref="ResourceReaper" /> image.
135
135
/// </summary>
136
136
[ CanBeNull ]
137
137
public static IImage ResourceReaperImage { get ; set ; }
138
- = PropertiesFileConfiguration . Instance . GetRyukContainerImage ( ) ?? EnvironmentConfiguration . Instance . GetRyukContainerImage ( ) ;
138
+ = EnvironmentConfiguration . Instance . GetRyukContainerImage ( ) ?? PropertiesFileConfiguration . Instance . GetRyukContainerImage ( ) ;
139
139
140
140
/// <summary>
141
141
/// Gets or sets the <see cref="ResourceReaper" /> public host port.
@@ -159,7 +159,7 @@ static TestcontainersSettings()
159
159
/// </remarks>
160
160
[ CanBeNull ]
161
161
public static string HubImageNamePrefix { get ; set ; }
162
- = PropertiesFileConfiguration . Instance . GetHubImageNamePrefix ( ) ?? EnvironmentConfiguration . Instance . GetHubImageNamePrefix ( ) ;
162
+ = EnvironmentConfiguration . Instance . GetHubImageNamePrefix ( ) ?? PropertiesFileConfiguration . Instance . GetHubImageNamePrefix ( ) ;
163
163
164
164
/// <summary>
165
165
/// Gets or sets the logger.
0 commit comments