Configure Docker publishing with correct GitHub username

This commit is contained in:
Tomas Dvorak
2026-02-27 17:34:20 +01:00
parent 4c812e376d
commit 0a80ecd9f7
138 changed files with 12130 additions and 7831 deletions
Executable
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
# Trackeep Docker Update Script
# Pulls latest images and restarts services
set -e
echo "🔄 Pulling latest Trackeep images..."
docker compose pull
echo "🚀 Restarting services..."
docker compose up -d
echo "🧹 Cleaning up old images..."
docker image prune -f
echo "✅ Update complete!"
echo "🌐 Frontend: http://localhost:5173"
echo "🔧 Backend: http://localhost:8080"