feat(infra) : add self-update mechanism to deploy.sh
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-04 11:26:28 +02:00
parent c64b125047
commit 2c1ddb2126
3 changed files with 29 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
.env.test
infra/dev/
infra/prod/docker-compose.yml
infra/prod/deploy.sh
infra/prod/deploy.sh.example
infra/prod/.env.example
frontend/node_modules
frontend/.nuxt

View File

@@ -64,6 +64,7 @@ RUN rm -f /etc/nginx/sites-enabled/default
COPY infra/prod/supervisord.conf /etc/supervisor/conf.d/app.conf
COPY infra/prod/nginx.conf /etc/nginx/sites-enabled/inventory.conf
COPY infra/prod/maintenance.html /var/www/html/public/maintenance.html
COPY infra/prod/deploy.sh /var/www/html/infra/prod/deploy.sh
# Backend from stage 1
COPY --from=backend-build /app /var/www/html

View File

@@ -6,6 +6,28 @@ cd "$(dirname "$0")"
TAG="${1:-latest}"
export INVENTORY_IMAGE_TAG="$TAG"
# --- Self-update from Docker image ---
# After pulling the new image, extracts this script from it.
# If the version inside the image differs, replaces itself and re-executes.
if [ "${_DEPLOY_UPDATED:-0}" != "1" ]; then
echo "==> Pulling image..."
sudo docker compose pull
SELF="$(realpath "$0")"
TEMP_SCRIPT="$(mktemp)"
sudo docker compose run --rm --no-deps -T --entrypoint cat app /var/www/html/infra/prod/deploy.sh > "$TEMP_SCRIPT" 2>/dev/null || true
if [ -s "$TEMP_SCRIPT" ] && ! diff -q "$SELF" "$TEMP_SCRIPT" > /dev/null 2>&1; then
echo "==> deploy.sh updated from image, re-executing..."
cp "$TEMP_SCRIPT" "$SELF"
chmod +x "$SELF"
rm -f "$TEMP_SCRIPT"
export _DEPLOY_UPDATED=1
exec "$SELF" "$@"
fi
rm -f "$TEMP_SCRIPT"
fi
echo "==> Deploying inventory:${TAG}..."
# Fix storage directory structure (one-time migration fix)
@@ -24,8 +46,11 @@ sudo chown -R www-data:www-data storage
echo "==> Enabling maintenance mode..."
touch maintenance.on
echo "==> Pulling image..."
sudo docker compose pull
# Pull image (skip if already pulled during self-update)
if [ "${_DEPLOY_UPDATED:-0}" != "1" ]; then
echo "==> Pulling image..."
sudo docker compose pull
fi
echo "==> Starting container..."
sudo docker compose up -d