mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-06-27 02:30:08 +00:00

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.
13 lines
266 B
Bash
Executable File
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."
|