mirror of
https://github.com/runcitadel/core.git
synced 2024-11-11 16:30:38 +00:00
41 lines
888 B
Bash
Executable File
41 lines
888 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2020 Umbrel. https://getumbrel.com
|
|
# SPDX-FileCopyrightText: 2021-2022 Citadel and contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -euo pipefail
|
|
|
|
# Stop Citadel
|
|
|
|
if [[ $UID != 0 ]]; then
|
|
echo "Citadel must be stopped as root"
|
|
echo "Please re-run this script as"
|
|
echo " sudo ./scripts/stop"
|
|
exit 1
|
|
fi
|
|
|
|
CITADEL_ROOT="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))/.."
|
|
|
|
if [[ ! -d "$CITADEL_ROOT" ]]; then
|
|
echo "Root dir does not exist '$CITADEL_ROOT'"
|
|
exit 1
|
|
fi
|
|
|
|
cd "$CITADEL_ROOT"
|
|
|
|
# Increase default Docker and Compose timeouts to 240s
|
|
# As bitcoin can take a long while to respond
|
|
export DOCKER_CLIENT_TIMEOUT=240
|
|
export COMPOSE_HTTP_TIMEOUT=240
|
|
|
|
echo "Stopping installed apps..."
|
|
echo
|
|
"${CITADEL_ROOT}/app/app-manager.py" stop installed
|
|
echo
|
|
|
|
echo "Stopping Docker services..."
|
|
echo
|
|
docker compose down
|