fixed env vars delivery
Some checks failed
ci/woodpecker/push/db Pipeline failed

This commit is contained in:
Stephan D
2025-11-07 02:27:28 +01:00
parent 5c5a7e14a1
commit eef4f01ea0
2 changed files with 6 additions and 2 deletions

View File

@@ -16,6 +16,10 @@ scp -o StrictHostKeyChecking=no .env.lock "$REMOTE_TARGET:${REMOTE_DIR}/.env.loc
ssh -o StrictHostKeyChecking=no "$REMOTE_TARGET" <<EOSSH
set -euo pipefail
cd "${REMOTE_DIR}/compose"
set -a
. ../env/.env.runtime
. ../env/.env.lock.db
set +a
docker compose -f db.yml pull
docker compose -f db.yml up -d --remove-orphans
EOSSH