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
|
2026-01-04 18:16:58 +07:00
|
|
|
podman-compose down
|
2026-01-02 06:18:48 +07:00
|
|
|
|
2026-01-04 18:16:58 +07:00
|
|
|
echo "Application has been stopped."
|