Last active
August 13, 2024 02:03
-
-
Save ratacibernetica/2e320df255123ca22798897e9d4c6c2f to your computer and use it in GitHub Desktop.
Create a disposable email server like mailinator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Optional: | |
# add an A DNS record pointing to you server's IP address | |
# e.g, for mydomain.com, mail -> 127.0.0.1. Would be mail.mydomain.com | |
docker run -it --rm --name inbucket -p 9000:9000 -p 25:2500 -p 1100:1100 inbucket/inbucket |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment