You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for sharing your project! I just seem to be having some issues integrating it into our dev environment. We have an application consisting of various Spring Boot micro services, all deployed in containers, locally deployed via docker compose. Logically there should be no need to use production e-mails on localhost and that's why we wanted to mock the SMTP server.
We tried to integrate your project into our docker-compose file, but we keep getting "Connection refused".
This is the docker-compose file (edited to remove sensitive info):
Actually, just figured it out - it was only a matter of finding the right configuration to get it running. Adding it here for completeness, should anyone ever find it hard to integrate:
Yes this is exactly how spring boot works. Each configuration property you can just pass as environment variable. Thereby you have to capitalize the property names and e.g. replace . or - with an_.
But great that you were already able to fix the issue by yourself ;)
Hi, thanks for sharing your project! I just seem to be having some issues integrating it into our dev environment. We have an application consisting of various Spring Boot micro services, all deployed in containers, locally deployed via docker compose. Logically there should be no need to use production e-mails on localhost and that's why we wanted to mock the SMTP server.
We tried to integrate your project into our docker-compose file, but we keep getting "Connection refused".
This is the docker-compose file (edited to remove sensitive info):
Any hint what I'm doing wrong? Thanks a lot!
The text was updated successfully, but these errors were encountered: