Docker:Mailhog“连接被拒绝”

时间:2020-03-04 16:08:16

标签: docker mailhog

我有一个php-fpm容器,该容器应该使用Mailhog将邮件发送到另一个容器。错误消息是:

 Swift_TransportException: Connection could not be established with host mailhog [Connection refused #111]

容器定义如下:

 mailhog:
   image: mailhog/mailhog:latest
   restart: unless-stopped
   ports: 
     - 1025:1025
     - 8025:8025
   networks:
     mine:
       aliases:
         -mailhog

发送邮件的命令是:

 /usr/bin/mhsendmail --smtp-addr mailhog:1025

...从表面上看,这就是(Mailhog文档说...)的所有内容,我应该进行此工作。那么,究竟是什么会引起connection refused


好的,我可以从其他来源看到此消息的意思是,“没有进程正在侦听或被防火墙阻止了。”

1 个答案:

答案 0 :(得分:0)

错误警报!

我确定邮件的php.ini设置不正确。他们指定了错误的端口!