'Generic Commit'
All checks were successful
Build-Test-Publish / build (push) Successful in 1m16s

This commit is contained in:
Your Name
2025-06-14 14:30:12 +12:00
parent 09ae5f0dae
commit a752f2ccc2

View File

@@ -67,7 +67,8 @@ cd "${SCRIPT_DIR}"
docker stop sos-test || true
docker rm -v sos-test || true
LOCALCONFIG=${LOCALCONFIG} docker compose -f "${COMPOSE_FILE}" up -d
LOCALCONFIG=${LOCALCONFIG} docker compose \
-f "${COMPOSE_FILE}" up -d
# wait until healthy.
if ! wait_for_container "sos-test"; then
@@ -84,8 +85,11 @@ docker exec -i sos-test /bin/bash -c "cd /testing && ./test.sh http://127.0.0.1:
RESULT=$?
# clean up.
docker compose -f "${COMPOSE_FILE}" down
docker compose -f "${COMPOSE_FILE}" rm -v
docker compose \
-f "${COMPOSE_FILE}" down
docker compose \
-f "${COMPOSE_FILE}" rm -v
cd "${PREV_DIR}"