2026-05-20 22:30:37 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
# docker-test.sh — Rebuild and redeploy Pipeline locally from scratch.
|
2026-05-20 22:37:36 -05:00
|
|
|
# Cleans only Pipeline Docker resources before building.
|
|
|
|
|
# IMPORTANT: Do not add global Docker cleanup here (for example `docker system prune`).
|
|
|
|
|
# This script must only stop/remove resources for the Pipeline compose project.
|
2026-05-20 22:30:37 -05:00
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
|
|
|
|
2026-05-20 22:37:36 -05:00
|
|
|
echo "=== Stopping and removing Pipeline containers, images, volumes ==="
|
2026-05-20 22:30:37 -05:00
|
|
|
docker compose down --rmi all --volumes --remove-orphans 2>/dev/null || true
|
|
|
|
|
|
|
|
|
|
echo "=== Building and starting all containers ==="
|
|
|
|
|
docker compose up --build -d
|
|
|
|
|
|
|
|
|
|
echo "=== Waiting for services to be healthy ==="
|
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
|
|
echo "=== Checking container status ==="
|
|
|
|
|
docker compose ps
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "=== Deploy complete ==="
|
2026-05-20 22:37:36 -05:00
|
|
|
echo 'Frontend: http://localhost:3030'
|
|
|
|
|
echo 'Backend: http://localhost:8001'
|