Add scripts and port mapping env vars
This commit is contained in:
17
cleanup.sh
Executable file
17
cleanup.sh
Executable 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!"
|
||||
Reference in New Issue
Block a user