18 lines
418 B
Bash
18 lines
418 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Healthcheck for Ollama
|
||
|
|
|
||
|
|
# Check if the container is running
|
||
|
|
if ! docker ps --filter "name=ollama" --filter "status=running" | grep -q "ollama"; then
|
||
|
|
echo "[FAIL] Ollama container is not running"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
# Check API responsiveness
|
||
|
|
if ! curl -sf http://localhost:11434/api/tags > /dev/null; then
|
||
|
|
echo "[FAIL] Ollama API is not responding"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "[OK] Ollama is healthy"
|
||
|
|
exit 0
|