You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
π I have found these related issues/pull requests
None found.
π·οΈ Feature Request Type
Other
π Feature description
Many devices now use mDNS for .local hostname resolution. It appears that Uptime Kuma cannot resolve these and that an mDNS resolver is not installed within the container, so you either have to hard-code IP addresses, or setup these devices in DNS.
βοΈ Solution
As part of the Dockerfile, install libnss-mdns, and configure mDNS (nsswitch.conf) - e.g.
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y \
libnss-mdns \
&& rm -rf /var/lib/apt/lists/*
RUN sed -i 's/hosts:.*/hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4/' /etc/nsswitch.conf
β Alternatives
No response
π Additional Context
No response
The text was updated successfully, but these errors were encountered:
π I have found these related issues/pull requests
None found.
π·οΈ Feature Request Type
Other
π Feature description
Many devices now use mDNS for .local hostname resolution. It appears that Uptime Kuma cannot resolve these and that an mDNS resolver is not installed within the container, so you either have to hard-code IP addresses, or setup these devices in DNS.
βοΈ Solution
As part of the Dockerfile, install libnss-mdns, and configure mDNS (nsswitch.conf) - e.g.
β Alternatives
No response
π Additional Context
No response
The text was updated successfully, but these errors were encountered: