美文网首页小白运维之路
搭建即收即毁的临时邮箱系统forsaken-mail

搭建即收即毁的临时邮箱系统forsaken-mail

作者: 行书以鉴 | 来源:发表于2017-05-04 22:11 被阅读543次

源码官网:https://github.com/denghongcai/forsaken-mail
<h1>Installation</h1>
<h2>Docker安装(首推)</h2>


<h5>如果你网速较好的话,可以使用这种方法:</h5>
$~ docker pull malaohu/forsaken-mail //官方的镜像

拉取forsaken
$~ docker run --name forsaken-mail -d -p 25:25 -p 3000:3000 malaohu/forsaken-mail
运行.png
View on http://yourip:3000 主界面.png

</br></br>

<h4>如果你网速不太可以的话,请使用这种方法:</h4>
<h6>$~ git clone http://www.jianshu.com/p/34d3b4568059 </h6>
<h5>修改Dockerfile文件,更换淘宝node源</h5>
<h6>$~ vim Dockerfile
1.在“apt-get clean"前面加上
”RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak &&
echo "deb http://mirrors.163.com/debian/ jessie main non-free contrib" >/etc/apt/sources.list &&
echo "deb http://mirrors.163.com/debian/ jessie-proposed-updates main non-free contrib" >>/etc/apt/sources.list &&
echo "deb-src http://mirrors.163.com/debian/ jessie main non-free contrib" >>/etc/apt/sources.list &&
echo "deb-src http://mirrors.163.com/debian/ jessie-proposed-updates main non-free contrib" >>/etc/apt/sources.list“
进行换源

2.在"npm install"后面加上 “-g cnpm --registry=https://registry.npm.taobao.org
亦即 npm install -g cnpm --registry=https://registry.npm.taobao.org
</br>
保存
<h6>$~ docker build -t denghongcai/forsaken-mail . (不要忘记".")

docker部署过程 构建完成

$~ docker run --name forsaken-mail -d -p 25:25 -p 3000:3000 denghongcai/forsaken-mail</h6>
<h5>View On http://localhost:3000.</h5>

主界面.png

</br>

<h2>npm源码安装</h2>
首先安装node.js环境 ,记得换源噢~可以参考我的文章node.js安装和换淘宝源.
$~ git clone https://github.com/denghongcai/forsaken-mail.git
$~ npm install && npm start

相关文章

网友评论

  • 2e862cd70429:想不加端口访问,请问如何操作。
    2e862cd70429:@行书以鉴 你好,就是现在已经安装完毕也可以使用,但是是通过域名+3000端口访问,而我这台服务器上还有别的网站在运行,此时我想只用域名不加端口该如何操作啊。
    行书以鉴:@singlecolor 不太明白您的意思?可以用-p该端口映射

本文标题:搭建即收即毁的临时邮箱系统forsaken-mail

本文链接:https://www.haomeiwen.com/subject/xwidtxtx.html