60844efaba
Backend now starts and Flyway migrations run, but /actuator/health returned 503 (DOWN) so Docker marked the container unhealthy and the frontend refused to start. Cause: spring-boot-starter-mail registers a mail health indicator that tries to connect to localhost:1025; there is no SMTP container in this deployment, so it reports DOWN and drags the aggregate health to DOWN. Disable the mail health indicator in the docker profile. Mail being down must not make the whole service unhealthy in an SMTP-less deployment.