[GH-ISSUE #818] Add paho-mqtt to image to enable mqtt in Apprise #575

Closed
opened 2026-02-25 23:42:54 +03:00 by kerem · 1 comment
Owner

Originally created by @seizedengine on GitHub (Apr 5, 2023).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/818

Trying to enable mqtts in Apprise in self hosted. It fails sending a test from the integrations page, so I found that I could test it in the container:

root@healthchecks:/# apprise -vvv -b test -t title mqtts://mqttserver/healthchecksio
2023-04-05 14:07:54,272 - ERROR - mqtts:// is disabled on this system.
2023-04-05 14:07:54,272 - ERROR - There are no service(s) to notify

Which lead to:

root@healthchecks:/config# apprise -l

  • MQTT Notification
    Python Packages Required:
    • paho-mqtt

Any chance paho-mqtt could be added to the image?

Thank you for the great product! Ive used the free tier for a long time and it has always been excellent.

Originally created by @seizedengine on GitHub (Apr 5, 2023). Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/818 Trying to enable mqtts in Apprise in self hosted. It fails sending a test from the integrations page, so I found that I could test it in the container: root@healthchecks:/# apprise -vvv -b test -t title mqtts://mqttserver/healthchecksio 2023-04-05 14:07:54,272 - ERROR - mqtts:// is disabled on this system. 2023-04-05 14:07:54,272 - ERROR - There are no service(s) to notify Which lead to: root@healthchecks:/config# apprise -l - MQTT Notification Python Packages Required: - paho-mqtt Any chance paho-mqtt could be added to the image? Thank you for the great product! Ive used the free tier for a long time and it has always been excellent.
kerem closed this issue 2026-02-25 23:42:54 +03:00
Author
Owner

@cuu508 commented on GitHub (Apr 9, 2023):

You can build a custom image that extends the standard image, and adds the paho-mqtt package. I think a Dockerfile like this should work:

FROM healthchecks/healthchecks
RUN pip install paho-mqtt
<!-- gh-comment-id:1501060320 --> @cuu508 commented on GitHub (Apr 9, 2023): You can build a custom image that extends the standard image, and adds the `paho-mqtt` package. I think a Dockerfile like this should work: ```dockerfile FROM healthchecks/healthchecks RUN pip install paho-mqtt ```
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/healthchecks#575
No description provided.