You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Obsolete("This constant is obsolete and will be removed in the future. Use the constructor with the image parameter instead: https://github.com/testcontainers/testcontainers-dotnet/discussions/1470#discussioncomment-15185721.")]
8
+
publicconststringFlociImage="floci/floci:1.5.13";
9
+
10
+
publicconstushortFlociPort=4566;
11
+
12
+
publicconststringAccessKey="test";
13
+
14
+
publicconststringSecretKey="test";
15
+
16
+
publicconststringRegion="us-east-1";
17
+
18
+
/// <summary>
19
+
/// Initializes a new instance of the <see cref="FlociBuilder" /> class.
20
+
/// </summary>
21
+
[Obsolete("This parameterless constructor is obsolete and will be removed. Use the constructor with the image parameter instead: https://github.com/testcontainers/testcontainers-dotnet/discussions/1470#discussioncomment-15185721.")]
22
+
publicFlociBuilder()
23
+
:this(FlociImage)
24
+
{
25
+
}
26
+
27
+
/// <summary>
28
+
/// Initializes a new instance of the <see cref="FlociBuilder" /> class.
29
+
/// </summary>
30
+
/// <param name="image">
31
+
/// The full Docker image name, including the image repository and tag
32
+
/// (e.g., <c>floci/floci:1.5.13</c>).
33
+
/// </param>
34
+
/// <remarks>
35
+
/// Docker image tags available at <see href="https://hub.docker.com/r/floci/floci/tags" />.
36
+
/// </remarks>
37
+
publicFlociBuilder(stringimage)
38
+
:this(newDockerImage(image))
39
+
{
40
+
}
41
+
42
+
/// <summary>
43
+
/// Initializes a new instance of the <see cref="FlociBuilder" /> class.
44
+
/// </summary>
45
+
/// <param name="image">
46
+
/// An <see cref="IImage" /> instance that specifies the Docker image to be used
47
+
/// for the container builder configuration.
48
+
/// </param>
49
+
/// <remarks>
50
+
/// Docker image tags available at <see href="https://hub.docker.com/r/floci/floci/tags" />.
0 commit comments