9 lines
258 B
Docker
9 lines
258 B
Docker
|
|
# Dockerfile for Netdata with msmtp support for email alerts
|
||
|
|
FROM netdata/netdata:latest
|
||
|
|
|
||
|
|
# Install msmtp for sending emails
|
||
|
|
RUN apk add --no-cache msmtp msmtp-mta ca-certificates
|
||
|
|
|
||
|
|
# Set proper permissions for msmtp config
|
||
|
|
RUN chmod 600 /etc/msmtprc || true
|