From d4f1d1e97df8175c9c9e9526120256c43e08386a Mon Sep 17 00:00:00 2001 From: root Date: Sat, 9 May 2026 23:35:44 +0000 Subject: [PATCH] revert(deploy): revert base image changes due to workspace complexity Reverting deployment script changes that were part of the base image approach. The base image strategy is too complex for the current pnpm workspace structure. Reverting to the proven docker-prep.sh tarball approach. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- deploy-all.sh | 6 ------ deploy-clock.sh | 5 ----- deploy-notes.sh | 5 ----- 3 files changed, 16 deletions(-) diff --git a/deploy-all.sh b/deploy-all.sh index 801cd4d..05604e8 100755 --- a/deploy-all.sh +++ b/deploy-all.sh @@ -127,12 +127,6 @@ deploy_repo() { # ── Build and Deploy ─────────────────────────────────────────────── if [ -f "docker-compose.yml" ]; then log "Building and deploying $repo..." - - # Pull latest base images - log "Pulling latest base images for $repo..." - docker pull bytelyst-common-base-backend:latest || warn "Failed to pull backend base image for $repo, using local cache" - docker pull bytelyst-common-base-web:latest || warn "Failed to pull web base image for $repo, using local cache" - docker compose build || fail "Docker build failed for $repo" docker compose up -d || fail "Docker compose up failed for $repo" ok "Deployment completed for $repo" diff --git a/deploy-clock.sh b/deploy-clock.sh index 8e19c5c..1cfb595 100755 --- a/deploy-clock.sh +++ b/deploy-clock.sh @@ -113,11 +113,6 @@ if [ ! -f "docker-compose.yml" ]; then fail "docker-compose.yml not found in $REPO_DIR" fi -# Pull latest base images -log "Pulling latest base images..." -docker pull bytelyst-common-base-backend:latest || warn "Failed to pull backend base image, using local cache" -docker pull bytelyst-common-base-web:latest || warn "Failed to pull web base image, using local cache" - # Build and start services log "Building Docker images..." docker compose build || fail "Docker build failed" diff --git a/deploy-notes.sh b/deploy-notes.sh index e5584f5..a50032a 100755 --- a/deploy-notes.sh +++ b/deploy-notes.sh @@ -113,11 +113,6 @@ if [ ! -f "docker-compose.yml" ]; then fail "docker-compose.yml not found in $REPO_DIR" fi -# Pull latest base images -log "Pulling latest base images..." -docker pull bytelyst-common-base-backend:latest || warn "Failed to pull backend base image, using local cache" -docker pull bytelyst-common-base-web:latest || warn "Failed to pull web base image, using local cache" - # Build and start services log "Building Docker images..." docker compose build || fail "Docker build failed"