feat: Enhance Docker build versioning with a build argument, fetch git tags during deployment, and add comprehensive deployment documentation.

This commit is contained in:
Hördle Bot
2025-11-25 10:15:47 +01:00
parent ce413cf6bc
commit 54af256e91
3 changed files with 98 additions and 2 deletions

View File

@@ -50,6 +50,10 @@ fi
echo "📥 Pulling latest changes from git..."
git pull
# Fetch all tags
echo "🏷️ Fetching git tags..."
git fetch --tags
# Build new image in background (doesn't stop running container)
echo "🔨 Building new Docker image (this runs while app is still online)..."
docker compose build