#!/bin/bash echo "Stopping application..." if [ "$(docker ps -q -f name=z1_)" ]; then docker-compose down >/dev/null 2>&1 echo "Application stopped successfully." else echo "No running containers found. Nothing to stop." fi