9 lines
288 B
Docker
9 lines
288 B
Docker
FROM docker.io/alpine:edge
|
|
|
|
RUN apk add smartmontools util-linux zabbix-agent2 zabbix-utils sudo nftables zabbix-agent2-plugin-postgresql && \
|
|
echo 'zabbix ALL=(ALL) NOPASSWD:/usr/sbin/smartctl' >> /etc/sudoers
|
|
|
|
# USER zabbix
|
|
USER root
|
|
|
|
ENTRYPOINT [ "/usr/sbin/zabbix_agent2", "-f" ]
|