Deploy: MariaDB from Gitea registry to fix amd64 manifest error

- Use image 10.0.10.205:3000/bert.hausmans/mariadb:11 in compose
- Add deploy/mariadb/Dockerfile (FROM mariadb:11, platform amd64)
- Add scripts/push-mariadb-to-registry.sh to build and push amd64 image once
- Update README with one-time push step and troubleshooting

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-03 14:21:00 +01:00
parent a63252135c
commit da64e52816
4 changed files with 30 additions and 8 deletions

View File

@@ -0,0 +1,3 @@
# Pin MariaDB 11 for linux/amd64 so we can build and push to Gitea
# when the server cannot pull multi-arch from Docker Hub.
FROM --platform=linux/amd64 docker.io/library/mariadb:11