Add scripts and port mapping env vars

This commit is contained in:
Zhi
2026-03-14 07:39:17 +00:00
parent f081d53400
commit 074b5df4f5
3 changed files with 59 additions and 44 deletions

17
cleanup.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/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!"