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>
This commit is contained in:
root 2026-05-09 23:35:44 +00:00
parent cf166e83ff
commit d4f1d1e97d
3 changed files with 0 additions and 16 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"