msztolcman / sendria

Sendria (formerly MailTrap) is a SMTP server designed to run in your dev/test environment, that is designed to catch any email you or your application is sending, and display it in a web interface instead of sending to real world.
MIT License
149 stars 14 forks source link

[Feature Request] :latest tag for docker registry #15

Open frostfire64 opened 2 years ago

frostfire64 commented 2 years ago

I tend to run my dev environments on docker and use docker-compose to manage them. I was surprised that the :latest tag was missing from the docker registry, adding it would be great to keep sendria up to date with every release by updating the docker image .

amenk commented 2 years ago

The

$ docker run -p 1025:1025 -p 1080:1080 msztolcman/sendria

from the README does not work, so this works:

$ docker run -p 1025:1025 -p 1080:1080 msztolcman/sendria:v2.2.2.0

Yes, a latest tag would be great :-)