15 lines
317 B
Bash
Executable File
15 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Stop script for MerchantsOfHope.org recruiting platform
|
|
|
|
set -e
|
|
|
|
echo "Stopping MerchantsOfHope.org recruiting platform..."
|
|
|
|
# Get the directory of this script
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# Stop the containers
|
|
docker-compose down
|
|
|
|
echo "Containers stopped successfully!" |