weaviate-test2 / start.sh
wjm55
testing nginx
cf8d4dd
raw
history blame
210 Bytes
#!/bin/bash
# Start Weaviate in the background
/bin/weaviate --host 0.0.0.0 --port $HTTP_PORT --scheme http &
# Give Weaviate a moment to start
sleep 5
# Start Nginx in the foreground
nginx -g 'daemon off;'