2021-09-13 00:06:51 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
|
|
|
ARG MAJOR_VERSION=6.0
|
2022-03-01 13:41:21 +01:00
|
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.1
|
2021-09-13 00:06:51 +02:00
|
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-pgsql:alpine-${ZBX_VERSION}
|
|
|
|
|
|
|
|
FROM ${BUILD_BASE_IMAGE} as builder
|
|
|
|
|
2021-11-29 15:08:26 +01:00
|
|
|
FROM alpine:3.15
|
2018-02-18 21:42:44 +01:00
|
|
|
|
2021-09-13 00:06:51 +02:00
|
|
|
ARG MAJOR_VERSION
|
|
|
|
ARG ZBX_VERSION
|
2021-10-16 17:49:19 +02:00
|
|
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
ENV TERM=xterm \
|
|
|
|
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
2021-09-13 00:06:51 +02:00
|
|
|
MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL
|
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
2019-09-05 19:04:42 +02:00
|
|
|
org.opencontainers.image.description="Zabbix server with PostgreSQL database support" \
|
2021-09-13 00:06:51 +02:00
|
|
|
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.opencontainers.image.licenses="GPL v2.0" \
|
|
|
|
org.opencontainers.image.source="${ZBX_SOURCES}" \
|
|
|
|
org.opencontainers.image.title="Zabbix server (PostgreSQL)" \
|
|
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
|
|
|
org.opencontainers.image.vendor="Zabbix LLC" \
|
|
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
2018-02-18 21:42:44 +01:00
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
2016-08-03 10:09:49 +02:00
|
|
|
|
2021-09-13 00:06:51 +02:00
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_server/zabbix_server", "/usr/sbin/zabbix_server"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_get/zabbix_get", "/usr/bin/zabbix_get"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_sender/zabbix_sender", "/usr/bin/zabbix_sender"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/conf/zabbix_server.conf", "/etc/zabbix/zabbix_server.conf"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/database/postgresql/create_server.sql.gz", "/usr/share/doc/zabbix-server-postgresql/create.sql.gz"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/database/postgresql/timescaledb.sql", "/usr/share/doc/zabbix-server-postgresql/timescaledb.sql"]
|
|
|
|
|
2019-05-30 20:21:16 +02:00
|
|
|
RUN set -eux && \
|
2021-10-16 17:49:19 +02:00
|
|
|
INSTALL_PKGS="bash \
|
|
|
|
tini \
|
|
|
|
fping \
|
|
|
|
tzdata \
|
|
|
|
iputils \
|
|
|
|
libcurl \
|
|
|
|
libevent \
|
|
|
|
libldap \
|
|
|
|
libssh \
|
|
|
|
libxml2 \
|
|
|
|
net-snmp-agent-libs \
|
|
|
|
openipmi-libs \
|
2022-01-22 13:44:37 +01:00
|
|
|
pcre2 \
|
2021-10-16 17:49:19 +02:00
|
|
|
postgresql-client \
|
|
|
|
postgresql-libs \
|
|
|
|
unixodbc" && \
|
|
|
|
apk add \
|
|
|
|
--no-cache \
|
|
|
|
--clean-protected \
|
|
|
|
${INSTALL_PKGS} && \
|
|
|
|
addgroup \
|
|
|
|
--system \
|
|
|
|
--gid 1995 \
|
|
|
|
zabbix && \
|
|
|
|
adduser \
|
|
|
|
--system \
|
2020-12-19 17:42:48 +01:00
|
|
|
--gecos "Zabbix monitoring system" \
|
|
|
|
--disabled-password \
|
|
|
|
--uid 1997 \
|
|
|
|
--ingroup zabbix \
|
|
|
|
--shell /sbin/nologin \
|
|
|
|
--home /var/lib/zabbix/ \
|
2016-08-03 10:09:49 +02:00
|
|
|
zabbix && \
|
2020-12-19 17:42:48 +01:00
|
|
|
adduser zabbix root && \
|
2018-02-18 21:42:44 +01:00
|
|
|
adduser zabbix dialout && \
|
|
|
|
mkdir -p /etc/zabbix && \
|
2016-08-03 10:09:49 +02:00
|
|
|
mkdir -p /var/lib/zabbix && \
|
2021-10-16 17:49:19 +02:00
|
|
|
mkdir -p /usr/lib/zabbix/alertscripts && \
|
2016-08-03 10:09:49 +02:00
|
|
|
mkdir -p /var/lib/zabbix/enc && \
|
2020-04-06 14:45:17 +02:00
|
|
|
mkdir -p /var/lib/zabbix/export && \
|
2021-10-16 17:49:19 +02:00
|
|
|
mkdir -p /usr/lib/zabbix/externalscripts && \
|
2018-02-18 21:42:44 +01:00
|
|
|
mkdir -p /var/lib/zabbix/mibs && \
|
2016-08-03 10:09:49 +02:00
|
|
|
mkdir -p /var/lib/zabbix/modules && \
|
2018-02-18 21:42:44 +01:00
|
|
|
mkdir -p /var/lib/zabbix/snmptraps && \
|
2016-08-03 10:09:49 +02:00
|
|
|
mkdir -p /var/lib/zabbix/ssh_keys && \
|
|
|
|
mkdir -p /var/lib/zabbix/ssl && \
|
|
|
|
mkdir -p /var/lib/zabbix/ssl/certs && \
|
|
|
|
mkdir -p /var/lib/zabbix/ssl/keys && \
|
|
|
|
mkdir -p /var/lib/zabbix/ssl/ssl_ca && \
|
2019-09-05 19:04:42 +02:00
|
|
|
mkdir -p /usr/share/doc/zabbix-server-postgresql && \
|
2020-04-25 19:31:44 +02:00
|
|
|
chown --quiet -R zabbix:root /etc/zabbix/ /var/lib/zabbix/ && \
|
|
|
|
chgrp -R 0 /etc/zabbix/ /var/lib/zabbix/ && \
|
|
|
|
chmod -R g=u /etc/zabbix/ /var/lib/zabbix/ && \
|
2019-05-10 16:11:07 +02:00
|
|
|
rm -rf /var/cache/apk/*
|
2016-08-03 10:09:49 +02:00
|
|
|
|
2018-02-18 21:42:44 +01:00
|
|
|
EXPOSE 10051/TCP
|
2016-08-03 10:09:49 +02:00
|
|
|
|
|
|
|
WORKDIR /var/lib/zabbix
|
|
|
|
|
2020-07-14 00:22:07 +02:00
|
|
|
VOLUME ["/var/lib/zabbix/snmptraps", "/var/lib/zabbix/export"]
|
2016-08-03 10:09:49 +02:00
|
|
|
|
2018-02-18 21:42:44 +01:00
|
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
2016-08-03 10:09:49 +02:00
|
|
|
|
2019-05-30 15:18:29 +02:00
|
|
|
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
|
2019-10-03 16:08:57 +02:00
|
|
|
|
2020-04-25 19:31:44 +02:00
|
|
|
USER 1997
|
2019-10-03 16:08:57 +02:00
|
|
|
|
|
|
|
CMD ["/usr/sbin/zabbix_server", "--foreground", "-c", "/etc/zabbix/zabbix_server.conf"]
|