mirror of https://github.com/lukechilds/umbrel.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
448 B
25 lines
448 B
5 years ago
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
# Stop Umbrel
|
||
|
|
||
|
if [[ $UID != 0 ]]; then
|
||
|
echo "Umbrel must be stopped as root"
|
||
|
echo "Please re-run this script as"
|
||
|
echo " sudo ./scripts/stop"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
UMBREL_ROOT="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))/.."
|
||
|
|
||
|
if [[ ! -d "$UMBREL_ROOT" ]]; then
|
||
|
echo "Root dir does not exist '$UMBREL_ROOT'"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd "$UMBREL_ROOT"
|
||
|
|
||
|
echo "Stopping Docker services..."
|
||
|
echo
|
||
|
docker-compose down
|