mirror of
				https://github.com/Unstructured-IO/unstructured.git
				synced 2025-10-31 18:14:51 +00:00 
			
		
		
		
	 8610bd3ab9
			
		
	
	
		8610bd3ab9
		
			
		
	
	
	
	
		
			
			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."
 |