56 lines
1.3 KiB
Bash
Executable File
56 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
dc="docker-compose -f <filename>"
|
|
install_location="<install_location>"
|
|
|
|
option=${1:-"--help"}
|
|
|
|
help() {
|
|
echo "yams - Yet Another Media Server"
|
|
echo
|
|
echo "Usage: yams [--help|restart|stop|start|status]"
|
|
echo "options:"
|
|
echo "--help displays this help message"
|
|
echo "restart restarts yams services"
|
|
echo "stop stops all yams services"
|
|
echo "start starts yams services"
|
|
echo "destroy destroy yams services so you can start from scratch"
|
|
}
|
|
|
|
if [ $option == "--help" ]; then
|
|
help
|
|
exit 0
|
|
fi
|
|
|
|
if [ $option == "restart" ]; then
|
|
$dc stop && $dc up -d
|
|
echo "YAMS is starting. Wait 1 min until all the services are up and running..."
|
|
exit 0
|
|
fi
|
|
|
|
if [ $option == "stop" ]; then
|
|
$dc stop
|
|
exit 0
|
|
fi
|
|
|
|
if [ $option == "start" ]; then
|
|
$dc up -d
|
|
echo "YAMS is starting. Wait 1 min until all the services are up and running..."
|
|
exit 0
|
|
fi
|
|
|
|
if [ $option == "destroy" ]; then
|
|
echo
|
|
echo
|
|
read -p "Are you sure you want to destroy all your yams services? THIS IS NOT RECOVERABLE! ⚠️ ️🚨 [y/N]: " destroy_now
|
|
destroy_now=${destroy_now:-"n"}
|
|
if [ $destroy_now == "y" ]; then
|
|
$dc down
|
|
echo
|
|
echo
|
|
echo "yams services were destroyed. To restart, run: "
|
|
echo "\$ yams start"
|
|
fi
|
|
fi
|