mirror of
https://github.com/runcitadel/core.git
synced 2024-11-11 16:30:38 +00:00
6e9ecd85ae
This reverts commit 1b61d525f6
.
20 lines
547 B
Bash
Executable File
20 lines
547 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2020 Umbrel. https://getumbrel.com
|
|
# SPDX-FileCopyrightText: 2021-2022 Citadel and contributors
|
|
# SPDX-FileCopyrightText: 2021 https://github.com/o3o3o
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -euo pipefail
|
|
|
|
CITADEL_ROOT="$(readlink -f $(dirname "${BASH_SOURCE[0]}")/..)"
|
|
|
|
result=$(docker compose \
|
|
--file "${CITADEL_ROOT}/docker-compose.yml" \
|
|
--env-file "${CITADEL_ROOT}/.env" \
|
|
exec lightning lncli "$@")
|
|
|
|
# We need to echo with quotes to preserve output formatting
|
|
echo "$result"
|