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
Copy file name to clipboardExpand all lines: docs/modules/databend.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Databend
2
2
3
-
Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
3
+
Since testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><spanclass="tc-version">:material-tag: v0.34.0</span></a>
4
4
5
5
## Introduction
6
6
@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/databend
24
24
25
25
### Run function
26
26
27
-
-Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
Copy file name to clipboardExpand all lines: docs/modules/dynamodb.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# DynamoDB
2
2
3
-
Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
3
+
Since testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><spanclass="tc-version">:material-tag: v0.34.0</span></a>
4
4
5
5
## Introduction
6
6
@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/dynamodb
24
24
25
25
### Run function
26
26
27
-
-Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
The DynamoDB module exposes one entrypoint function to create the DynamoDB container, and this function receives three parameters:
30
30
@@ -49,13 +49,13 @@ E.g. `Run(context.Background(), "amazon/dynamodb-local:2.2.1")`.
49
49
50
50
#### WithSharedDB
51
51
52
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
The `WithSharedDB` option tells the DynamoDB container to use a single database file. At the same time, it marks the container as reusable, which causes that successive calls to the `Run` function will return the same container instance, and therefore, the same database file.
55
55
56
56
#### WithDisableTelemetry
57
57
58
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
You can turn off telemetry when starting the DynamoDB container, using the option `WithDisableTelemetry`.
61
61
@@ -65,7 +65,7 @@ The DynamoDB container exposes the following methods:
65
65
66
66
#### ConnectionString
67
67
68
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
The `ConnectionString` method returns the connection string to the DynamoDB container. This connection string can be used to connect to the DynamoDB container from your application,
71
71
using the AWSSDK or any other DynamoDB client of your choice.
Copy file name to clipboardExpand all lines: docs/modules/etcd.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# etcd
2
2
3
-
Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
3
+
Since testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><spanclass="tc-version">:material-tag: v0.34.0</span></a>
4
4
5
5
## Introduction
6
6
@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/etcd
24
24
25
25
### Run function
26
26
27
-
-Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
The etcd module exposes one entrypoint function to create the etcd container, and this function receives three parameters:
30
30
@@ -49,19 +49,19 @@ E.g. `Run(context.Background(), "bitnami/etcd:latest")`.
49
49
50
50
#### WithAdditionalArgs
51
51
52
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
You can pass additional arguments to the etcd container by using the `WithAdditionalArgs` option. The arguments are passed to the CMD of the etcd container.
55
55
56
56
#### WithDataDir
57
57
58
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
You can set the data directory for the etcd container by using the `WithDataDir` boolean option. The data directory where the etcd data is stored is `/data.etcd`.
61
61
62
62
#### WithNodes
63
63
64
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
You can set the number of nodes for the etcd cluster by using the `WithNodes` option, passing the node names for each of the nodes. Single-node clusters are not allowed,
67
67
for that reason the functional option receives three string arguments: the first node, the second node, and a variadic argument for the rest of the nodes.
@@ -71,25 +71,25 @@ The module creates a Docker network for the etcd cluster, and the nodes are conn
71
71
72
72
#### WithClusterToken
73
73
74
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
Sets the cluster token for the etcd cluster. The cluster token is used to identify the etcd cluster. Thedefault value is `mys3cr3ttok3n`.
77
77
The etcd container holds a reference to the cluster token, so you can use it with e.g. `ctr.ClusterToken`.
78
78
79
79
### ContainerMethods
80
80
81
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
Returns the client endpoint for the etcd container and an error, if any. In the case of a cluster, it returns the client endpoint for the first node.
90
90
91
91
#### PeerEndpoint
92
92
93
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
Copy file name to clipboardExpand all lines: docs/modules/meilisearch.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Meilisearch
2
2
3
-
Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
3
+
Since testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><spanclass="tc-version">:material-tag: v0.34.0</span></a>
4
4
5
5
## Introduction
6
6
@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/meilisearch
24
24
25
25
### Run function
26
26
27
-
-Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
The Meilisearch module exposes one entrypoint function to create the Meilisearch container, and this function receives three parameters:
30
30
@@ -49,13 +49,13 @@ E.g. `Run(context.Background(), "getmeili/meilisearch:v1.10.3")`.
49
49
50
50
#### MasterKey
51
51
52
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
If you need to set a master key, you can use the `WithMasterKey(key string)` option. Otherwise, the default will be used which is `just-a-master-key-for-test`, which is exported on the container fields.
55
55
56
56
#### DumpData
57
57
58
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
If you need to dump data in Meilisearch upon initialization for testing, you can use `WithDumpData(filepath string)` option where `filepath` can be an absolute path or relative path to a `dump` file. Please refer to the official Meilisearch documentation about dump files [here](https://www.meilisearch.com/docs/learn/advanced/snapshots_vs_dumps#dumps).
61
61
@@ -65,13 +65,13 @@ The Meilisearch container exposes the following methods:
65
65
66
66
#### Address
67
67
68
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
The `Address` method retrieves the address of the Meilisearch container.
71
71
It will use http as protocol, as TLS is not supported at the moment.
72
72
73
73
#### MasterKey
74
74
75
-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
Copy file name to clipboardExpand all lines: docs/modules/yugabytedb.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# YugabyteDB
2
2
3
-
Not available until the next release of testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go"><spanclass="tc-version">:material-tag: main</span></a>
3
+
Since testcontainers-go <ahref="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><spanclass="tc-version">:material-tag: v0.34.0</span></a>
0 commit comments