
Deploy Maildev on Your Own Server
MailDev is a simple way to test your project's generated email during development.
想更快部署 Maildev到服务器?试试 Senate,一条命令完成部署,自动配置 HTTPS 和监控。
什么是 Maildev?
MailDev is a simple way to test your project's generated email during development, with an easy to use web interface that runs on your machine built on top of Node.js. More information about this container can be found here: https://hub.docker.com/r/maildev/maildev . Official website: https://maildev.github.io/maildev/ After installation on Senate, it will be available as <service_name> at port 1080 to other Senate apps .
自托管 Maildev
按照以下步骤在您的服务器上部署。
安装 Docker
如果服务器上已安装 Docker,可跳过此步骤。
curl -fsSL https://get.docker.com | sh
配置
自定义以下设置。大多数情况下使用默认值即可。
General
部署
复制配置并在服务器上运行。
services:
maildev:
image: maildev/maildev:2.1.0
environment:
MAILDEV_IP: "::"
MAILDEV_MAIL_DIRECTORY: /data
MAILDEV_SMTP_PORT: "1025"
MAILDEV_WEB_PASS: 1631a235
MAILDEV_WEB_USER: admin
volumes:
- maildev-data:/data
ports:
- $$cap_maildev_smtp_port:1025
volumes:
maildev-data: {}
然后运行:
docker compose up -d
访问
启动后,访问您的应用: http://localhost:1080
为什么要自托管 Maildev?
完全数据所有权
数据保存在您的服务器上,无第三方访问。
无月费
只需支付服务器费用,无按席位或用量收费。
完全控制
按您的需求自定义、备份和扩展。
隐私与合规
满足 GDPR、HIPAA 或内部安全要求。
技术细节
Docker 镜像
maildev/maildev:${maildev_version}想更快部署?
尝试 Senate!Senate 帮您处理 Docker、HTTPS、更新和监控。一条命令部署 300+ 应用。
在任意 Linux 服务器上安装:
sh -c "$(curl -sSL https://get.senate.sh)"