From b46b8810067e6db5d2e6d777a7d2e148ee8deb91 Mon Sep 17 00:00:00 2001 From: Paolo Asperti Date: Tue, 19 Mar 2019 22:04:36 +0100 Subject: [PATCH] /etc/zabbix wasn't created with package install --- zabbix-agent/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zabbix-agent/Dockerfile b/zabbix-agent/Dockerfile index c364ba8..e78e5ce 100644 --- a/zabbix-agent/Dockerfile +++ b/zabbix-agent/Dockerfile @@ -7,6 +7,7 @@ ENV LANG C.UTF-8 COPY run.sh / RUN apk add -U jq zabbix-agent sudo && \ - chmod a+x /run.sh + chmod a+x /run.sh && \ + mkdir /etc/zabbix CMD [ "/run.sh" ]