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"