unstructured/scripts/kafka-test-helpers/create-kafka-instance.sh
David Potter 8610bd3ab9
feat: Kafka source and destination connector (#3176)
Thanks to @tullytim we have a new Kafka source and destination
connector. It also works with hosted Kafka via Confluent.

Documentation will be added to the Docs repo.
2024-06-22 23:26:23 +00:00

13 lines
266 B
Bash
Executable File

#!/usr/bin/env bash
set -e
SCRIPT_DIR=$(dirname "$(realpath "$0")")
# Create the Weaviate instance
docker-compose version
docker-compose -f "$SCRIPT_DIR"/docker-compose.yml up --wait
docker-compose -f "$SCRIPT_DIR"/docker-compose.yml ps
echo "Instance is live."