-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcheck-dolphin-build.sh
More file actions
38 lines (33 loc) · 1.1 KB
/
check-dolphin-build.sh
File metadata and controls
38 lines (33 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
# Quick status checker for Dolphin container build
echo "======================================"
echo "Dolphin Build Status Checker"
echo "======================================"
echo ""
# Check if build process is running
if ps aux | grep -q "[d]ocker-compose.*dolphin-vlm"; then
echo "✓ Build process is RUNNING"
echo ""
echo "Active build processes:"
ps aux | grep "[d]ocker-compose.*dolphin-vlm" | awk '{print " PID: "$2" - Started at "$9}'
echo ""
else
echo "✗ No build process detected"
echo ""
fi
# Check if image exists
echo "Checking for Dolphin image..."
if docker images | grep -q "dolphin"; then
echo "✓ Dolphin image found:"
docker images | grep "dolphin" | head -5
echo ""
echo "✅ BUILD COMPLETE! You can now start the container."
else
echo "✗ Dolphin image not built yet"
echo " Build is still in progress..."
fi
echo ""
echo "To monitor build progress in real-time:"
echo " cd ~/nextcloud-docker-dev/workspace/server/apps-extra/openregister"
echo " docker-compose -f docker-compose.huggingface.yml build dolphin-vlm"
echo ""