Fix SDK field names - use camelCase throughout
Build and push images / validate (push) Successful in 3s
Build and push images / build-backend (push) Successful in 51s
Build and push images / build-worker (push) Successful in 6s
Build and push images / build-frontend (push) Successful in 5s

This commit is contained in:
2026-06-06 19:27:35 +01:00
parent f609931ebc
commit 0fd3ff7414
3 changed files with 297 additions and 241 deletions
Executable
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -e
MESSAGE="${1:-update}"
cd "$(dirname "$0")"
git add -A
git commit -m "$MESSAGE"
git push
cd ../milevault_docker
docker compose down -v
echo ""
echo "Done. Run 'docker compose pull && docker compose up -d' when the build completes."