Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/modules/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ npm install @testcontainers/kafka --save-dev

These examples use the following libraries:

- [kafkajs](https://www.npmjs.com/package/kafkajs)
- [@confluentinc/kafka-javascript](https://www.npmjs.com/package/@confluentinc/kafka-javascript)

npm install kafkajs
npm install @confluentinc/kafka-javascript

Choose an image from the [container registry](https://hub.docker.com/r/confluentinc/cp-kafka) and substitute `IMAGE`.

Expand All @@ -38,9 +38,9 @@ Choose an image from the [container registry](https://hub.docker.com/r/confluent

These examples use the following libraries:

- [kafkajs](https://www.npmjs.com/package/kafkajs)
- [@confluentinc/kafka-javascript](https://www.npmjs.com/package/@confluentinc/kafka-javascript)

npm install kafkajs
npm install @confluentinc/kafka-javascript

Choose an image from the [container registry](https://hub.docker.com/r/confluentinc/cp-kafka) and substitute `IMAGE`.

Expand Down
4 changes: 2 additions & 2 deletions docs/modules/redpanda.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ npm install @testcontainers/redpanda --save-dev

These examples use the following libraries:

- [kafkajs](https://www.npmjs.com/package/kafkajs)
- [@confluentinc/kafka-javascript](https://www.npmjs.com/package/@confluentinc/kafka-javascript)

npm install kafkajs
npm install @confluentinc/kafka-javascript

Choose an image from the [container registry](https://hub.docker.com/r/redpandadata/redpanda) and substitute `IMAGE`.

Expand Down
2 changes: 1 addition & 1 deletion packages/modules/kafka/src/kafka-container-7.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe("KafkaContainer", { timeout: 240_000 }, () => {
const zooKeeperHost = "zookeeper";
const zooKeeperPort = 2181;

await using _ = await new GenericContainer("confluentinc/cp-zookeeper:5.5.4")
await using _ = await new GenericContainer("confluentinc/cp-zookeeper:7.5.0")
.withNetwork(network)
.withNetworkAliases(zooKeeperHost)
.withEnvironment({ ZOOKEEPER_CLIENT_PORT: zooKeeperPort.toString() })
Expand Down
Loading