mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-25 15:05:49 +03:00
[GH-ISSUE #800] SMTPD refuses connection after 2.7 update using Docker #563
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#563
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @marcogiorgio on GitHub (Mar 7, 2023).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/800
Hi, I have a docker-compose file that looks like this:
docker-compose.yml
Spoiler text. Note that it's important to have a space after the summary tag. You should be able to write any markdown you want inside the
<details>tag... just make sure you close<details>afterward.I noticed that since the 2.7 update, I cannot connect anymore to the smtpd daemon by using any interfaces but localhost. For example:
telnet localhost 2525: this workstelnet SERVER_IP 2525: this does not work anymoreIf I revert the image back to
2.6.1everything starts working as intended again. Is anyone experiencing the same problem?Thanks
@cuu508 commented on GitHub (Mar 7, 2023):
I just tested the docker-compose.yml file that is in the repository:
docker-compose.yml
(I uncommented the port 2525 forward, and I added
SMTPD_PORT=2525in.env)It listens on 0.0.0.0 which is "all interfaces":
I'm testing this on Ubuntu 22.04, Docker 23.0.1, docker-compose 1.29.2.
@marcogiorgio commented on GitHub (Mar 7, 2023):
Ah I see, I had to change the internal port to
2525as well in mydocker-compose.yml(instead of25). Thanks!