elemes/stop.sh

10 lines
263 B
Bash
Raw Normal View History

2026-01-02 06:18:48 +07:00
#!/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."