ansible/playbooks/apps/files/ynab/run

11 lines
258 B
Text
Raw Normal View History

2024-10-12 13:11:19 +02:00
#!/bin/bash
set -uxo pipefail
pushd /mnt/data/ynab
docker compose --ansi never pull --quiet
docker compose --ansi never down
COMPOSE_HTTP_TIMEOUT=120 docker compose --ansi never up --abort-on-container-exit --exit-code-from ynab
status=$?
popd
exit $status