mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-04 12:32:58 +00:00
Configure Docker publishing with correct GitHub username
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user