smtp4dev
smtp4dev copied to clipboard
Mac OS docker - not working
I'm trying to get smtp4dev working on Mac OS with Docker. I followed the docker install instructions by running this command:
docker run --rm -it -p 3000:80 -p 2525:25 rnwood/smtp4dev
and am able to create and run the container. However, I cannot access the web interface. Any suggestions?
Have you tried -p 25:25
instead of -p 2525:25
Same issue with the SMTP port here on Linux. I tried with ports 25:25 / 1025:25, same thing, there is a issue with the port 25 of the container.
The Web UI is Working.
Edit: I found a workaround :
This is working if specify with the ip address like this => 127.0.0.1:1025:25
I'm trying to get smtp4dev working on Mac OS with Docker. I followed the docker install instructions by running this command:
docker run --rm -it -p 3000:80 -p 2525:25 rnwood/smtp4dev
and am able to create and run the container. However, I cannot access the web interface. Any suggestions?
Hi,
I am able to access the web UI on port 3000 as mentioned in the command. To send email, it was not connecting. So changed the 2525:25
to 25:25
.
Thanks. I will try it