Initial release

This commit is contained in:
Maxim Kalistratov
2026-07-26 05:13:30 +04:00
commit 47a50832b3
11 changed files with 1064 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/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