mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-28 21:35:42 +00:00
* Add eagle0.net as server name alias Allows accessing the site via eagle0.net in addition to prod.eagle0.net. Note: After deploying, run certbot to add eagle0.net to the SSL certificate: certbot --nginx -d prod.eagle0.net -d eagle0.net Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add admin container image verification in deploy workflow The admin container was running a stale image after the entrypoint was changed from /app/admin_server to /app/admin_server_linux_amd64. This happened because: 1. crane pull + docker load doesn't update the :latest tag locally 2. docker-compose fallback to :latest used the old cached image 3. --force-recreate recreated the container but with the old image Fixes: - Tag pulled admin image as :latest after docker load (ensures fallback uses correct image) - Add image digest verification after deploy (fails early if wrong image is running) - Add admin startup verification in deploy-blue-green.sh (catches container crashes with helpful logs) This follows the same pattern used in auth_build.yml for auth service verification. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>