Files
miku-discord/entrypoint.sh

18 lines
321 B
Bash
Raw Normal View History

2025-12-07 17:15:09 +02:00
#!/bin/sh
# Start the server in the background
ollama serve &
# Wait until the server is reachable
until curl -s http://localhost:11434 | grep -q 'Ollama is running'; do
echo 'Waiting for Ollama to start...'
sleep 2
done
# Pull the model
ollama pull llama3.1
ollama pull moondream
# Wait for background jobs
wait