elemes/stop.sh

10 lines
263 B
Bash
Executable File

#!/bin/bash
# Script to stop the C Programming Learning Management System
echo "Stopping C Programming Learning Management System..."
# Stop and remove the container
podman stop lms-c-container && podman rm lms-c-container
echo "Application has been stopped."