18 lines
440 B
Bash
Executable File
18 lines
440 B
Bash
Executable File
#!/bin/bash
|
|
# Cleanup script for HarborForge Test
|
|
# Removes containers and networks, but keeps images
|
|
|
|
set -e
|
|
|
|
COMPOSE_FILE="docker-compose-frontend.yml"
|
|
|
|
echo "🧹 Cleaning up HarborForge Test containers..."
|
|
|
|
# Stop and remove containers, networks (keep images)
|
|
docker compose -f "$COMPOSE_FILE" down
|
|
|
|
# Also remove the wizard config volume
|
|
docker volume rm harborforgetest_wizard_config 2>/dev/null || true
|
|
|
|
echo "✅ Cleanup complete!"
|