14 lines
452 B
Docker
14 lines
452 B
Docker
FROM zabbix/zabbix-server-pgsql:alpine-6.4.10
|
|
|
|
USER root
|
|
|
|
# force installation of python3 and pip3
|
|
RUN apk add --update --no-cache python3 \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY tr064tool /usr/lib/zabbix/externalscripts
|
|
|
|
# 20220130: Beobachtet dass die Datei im Container nicht die notwendigen Berechtigungen hat,
|
|
# dadurch hat das Zabbix-Plugin nicht funktioniert und keine Daten angezeigt.
|
|
RUN chmod +x /usr/lib/zabbix/externalscripts/tr064tool
|