mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 23:38:02 +01:00
10 lines
258 B
Bash
Executable file
10 lines
258 B
Bash
Executable file
#!/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
|