Files
2026-07-26 05:15:08 +04:00

21 lines
287 B
Bash

#!/bin/sh
set -eu
compose() {
docker compose \
-f compose.yaml \
-f compose.test.yaml \
"$@"
}
cleanup() {
compose down --remove-orphans
}
trap cleanup EXIT
compose up \
--force-recreate \
--abort-on-container-exit \
--exit-code-from test