:-'Generic Commit'
Some checks failed
Build-Test-Publish / Build (push) Failing after 3s

This commit is contained in:
Your Name
2025-05-30 19:33:21 +12:00
parent 2c2517f2fc
commit c1238e37be
2 changed files with 21 additions and 9 deletions

View File

@@ -11,8 +11,18 @@ docker buildx build --load -t gitea.jde.nz/public/simple-object-storage:test --p
export LOCALCONFIG="${SCRIPT_DIR}/.test-docker/config.json"
if [ ! -f "${LOCALCONFIG}" ]; then
echo "Config file not found: ${LOCALCONFIG}"
exit 1
fi
COMPOSE_FILE="${SCRIPT_DIR}/.test-docker/compose.yaml"
if [ ! -f "${COMPOSE_FILE}" ]; then
echo "Compose file not found: ${COMPOSE_FILE}"
exit 1
fi
docker compose -f "${COMPOSE_FILE}" up -d
"${SCRIPT_DIR}/test.sh" "http://localhost:7703"