This commit is contained in:
chamikaJ
2025-04-17 18:28:54 +05:30
parent f583291d8a
commit 8825b0410a
2837 changed files with 241385 additions and 127578 deletions

19
stop.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Colors for terminal output
GREEN='\033[0;32m'
RED='\033[0;31m'
NC='\033[0m' # No Color
echo -e "${RED}Stopping Worklenz Docker Environment...${NC}"
# Check which Docker Compose command to use
if command -v docker compose &> /dev/null; then
# Docker Compose V2
docker compose down
else
# Legacy Docker Compose
docker-compose down
fi
echo -e "${GREEN}Worklenz services have been stopped.${NC}"