From a4227c8de4c7ac5b83aa432911e5e62a3157549d Mon Sep 17 00:00:00 2001 From: Christos Manios Date: Thu, 26 Mar 2026 17:19:17 +0200 Subject: [PATCH 1/7] Upgrade to Nagios Core to 4.5.12 (#100) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ced64ad..fef00f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ENV NAGIOS_HOME=/opt/nagios \ NAGIOS_FQDN=nagios.example.com \ NAGIOSADMIN_USER=nagiosadmin \ NAGIOSADMIN_PASS=nagios \ - NAGIOS_VERSION=4.5.11 \ + NAGIOS_VERSION=4.5.12 \ NAGIOS_PLUGINS_VERSION=2.4.12 \ NRPE_VERSION=4.1.3 \ APACHE_LOCK_DIR=/var/run \ From 952e22f7ac47cbe7f73eca8688ec6653720ac3da Mon Sep 17 00:00:00 2001 From: Christos Manios Date: Thu, 26 Mar 2026 17:19:39 +0200 Subject: [PATCH 2/7] Release build 34 --- CHANGELOG.md | 12 ++++++++++++ Dockerfile | 4 ++-- README.md | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 994ad30..d9338a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ This Docker image contains more than one software (Nagios, Nagios plugins, NRPE, Apache HTTPD, etc.) with different versions. Hence we decided to name the releases with the naming `Build - ` which will have an incremental unsigned integer. In this document we will describe the contents of every image in every build. +## Build 34 (2026-03-26) + +* Nagios core: v4.5.12 +* Nagios plugins: v2.4.12 +* NRPE: 4.1.3 +* Alpine: + * 3.23.2: `amd64`, `i386`, `arm64`,`arm/v6`, `arm/v7` + +### Features + +* Upgrade to Nagios Core `4.5.12`. ([#100](https://github.com/manios/docker-nagios/issues/100)) + ## Build 33 (2026-01-15) * Nagios core: v4.5.11 diff --git a/Dockerfile b/Dockerfile index fef00f5..6d17c92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -190,7 +190,7 @@ LABEL name="Nagios" \ nrpeVersion=$NRPE_VERSION \ homepage="https://www.nagios.com/" \ maintainer="Christos Manios " \ - build="33" \ + build="34" \ org.opencontainers.image.title="Nagios" \ org.opencontainers.image.description="Nagios, the Industry Standard In IT Infrastructure Monitoring" \ org.opencontainers.image.vendor="Nagios" \ @@ -199,7 +199,7 @@ LABEL name="Nagios" \ org.opencontainers.image.url="https://hub.docker.com/r/manios/nagios" \ org.opencontainers.image.source="https://github.com/manios/docker-nagios" \ org.opencontainers.image.documentation="https://github.com/manios/docker-nagios/blob/master/README.md" \ - org.opencontainers.image.version="33" + org.opencontainers.image.version="34" RUN mkdir -p ${NAGIOS_HOME} && \ mkdir -p /orig/apache2 diff --git a/README.md b/README.md index 510bef1..4e01769 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Build Status: ## Supported tags and respective `Dockerfile` links -* `4.5.11`, `4.5`, `latest` [(4.5.11/Dockerfile)](https://github.com/manios/docker-nagios/blob/master/Dockerfile) +* `4.5.12`, `4.5`, `latest` [(4.5.12/Dockerfile)](https://github.com/manios/docker-nagios/blob/master/Dockerfile) For more information about the image versions you may refer to the [CHANGELOG](https://github.com/manios/docker-nagios/blob/master/CHANGELOG.md) From 1ccea2191cbcb067e3f2dca7a46c6f897f2dc806 Mon Sep 17 00:00:00 2001 From: Christos Manios Date: Wed, 1 Apr 2026 14:25:51 +0300 Subject: [PATCH 3/7] Upgrade to Nagios Plugins 2.5.0 (#101) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6d17c92..8d32bda 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ ENV NAGIOS_HOME=/opt/nagios \ NAGIOSADMIN_USER=nagiosadmin \ NAGIOSADMIN_PASS=nagios \ NAGIOS_VERSION=4.5.12 \ - NAGIOS_PLUGINS_VERSION=2.4.12 \ + NAGIOS_PLUGINS_VERSION=2.5 \ NRPE_VERSION=4.1.3 \ APACHE_LOCK_DIR=/var/run \ APACHE_LOG_DIR=/var/log/apache2 @@ -190,7 +190,7 @@ LABEL name="Nagios" \ nrpeVersion=$NRPE_VERSION \ homepage="https://www.nagios.com/" \ maintainer="Christos Manios " \ - build="34" \ + build="35-snapshot" \ org.opencontainers.image.title="Nagios" \ org.opencontainers.image.description="Nagios, the Industry Standard In IT Infrastructure Monitoring" \ org.opencontainers.image.vendor="Nagios" \ @@ -199,7 +199,7 @@ LABEL name="Nagios" \ org.opencontainers.image.url="https://hub.docker.com/r/manios/nagios" \ org.opencontainers.image.source="https://github.com/manios/docker-nagios" \ org.opencontainers.image.documentation="https://github.com/manios/docker-nagios/blob/master/README.md" \ - org.opencontainers.image.version="34" + org.opencontainers.image.version="35-snapshot" RUN mkdir -p ${NAGIOS_HOME} && \ mkdir -p /orig/apache2 From b0164053a36b2224debb308b150a9127c12e398c Mon Sep 17 00:00:00 2001 From: Christos Manios Date: Wed, 1 Apr 2026 14:29:04 +0300 Subject: [PATCH 4/7] Release build 35 --- CHANGELOG.md | 12 ++++++++++++ Dockerfile | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9338a0..0df6b6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ This Docker image contains more than one software (Nagios, Nagios plugins, NRPE, Apache HTTPD, etc.) with different versions. Hence we decided to name the releases with the naming `Build - ` which will have an incremental unsigned integer. In this document we will describe the contents of every image in every build. +## Build 35 (2026-04-03) + +* Nagios core: v4.5.12 +* Nagios plugins: v2.5.0 +* NRPE: 4.1.3 +* Alpine: + * 3.23.2: `amd64`, `i386`, `arm64`,`arm/v6`, `arm/v7` + +### Features + +* Upgrade to Nagios Plugins to `2.5.0`. ([#101](https://github.com/manios/docker-nagios/issues/101)) + ## Build 34 (2026-03-26) * Nagios core: v4.5.12 diff --git a/Dockerfile b/Dockerfile index 8d32bda..8675b5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -190,7 +190,7 @@ LABEL name="Nagios" \ nrpeVersion=$NRPE_VERSION \ homepage="https://www.nagios.com/" \ maintainer="Christos Manios " \ - build="35-snapshot" \ + build="35" \ org.opencontainers.image.title="Nagios" \ org.opencontainers.image.description="Nagios, the Industry Standard In IT Infrastructure Monitoring" \ org.opencontainers.image.vendor="Nagios" \ @@ -199,7 +199,7 @@ LABEL name="Nagios" \ org.opencontainers.image.url="https://hub.docker.com/r/manios/nagios" \ org.opencontainers.image.source="https://github.com/manios/docker-nagios" \ org.opencontainers.image.documentation="https://github.com/manios/docker-nagios/blob/master/README.md" \ - org.opencontainers.image.version="35-snapshot" + org.opencontainers.image.version="35" RUN mkdir -p ${NAGIOS_HOME} && \ mkdir -p /orig/apache2 From 832f18de01ee944d5a6ae8cc9a4f4c86fdd73d42 Mon Sep 17 00:00:00 2001 From: Christos Manios Date: Fri, 29 May 2026 16:58:22 +0300 Subject: [PATCH 5/7] Upgrade to Nagios Core to 4.5.13 (#102) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8675b5e..cebccc4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ENV NAGIOS_HOME=/opt/nagios \ NAGIOS_FQDN=nagios.example.com \ NAGIOSADMIN_USER=nagiosadmin \ NAGIOSADMIN_PASS=nagios \ - NAGIOS_VERSION=4.5.12 \ + NAGIOS_VERSION=4.5.13 \ NAGIOS_PLUGINS_VERSION=2.5 \ NRPE_VERSION=4.1.3 \ APACHE_LOCK_DIR=/var/run \ @@ -190,7 +190,7 @@ LABEL name="Nagios" \ nrpeVersion=$NRPE_VERSION \ homepage="https://www.nagios.com/" \ maintainer="Christos Manios " \ - build="35" \ + build="36-snapshot" \ org.opencontainers.image.title="Nagios" \ org.opencontainers.image.description="Nagios, the Industry Standard In IT Infrastructure Monitoring" \ org.opencontainers.image.vendor="Nagios" \ @@ -199,7 +199,7 @@ LABEL name="Nagios" \ org.opencontainers.image.url="https://hub.docker.com/r/manios/nagios" \ org.opencontainers.image.source="https://github.com/manios/docker-nagios" \ org.opencontainers.image.documentation="https://github.com/manios/docker-nagios/blob/master/README.md" \ - org.opencontainers.image.version="35" + org.opencontainers.image.version="36-snapshot" RUN mkdir -p ${NAGIOS_HOME} && \ mkdir -p /orig/apache2 From 6c680597aacc87d068701443988db7be83b80452 Mon Sep 17 00:00:00 2001 From: Christos Manios Date: Fri, 12 Jun 2026 12:01:07 +0300 Subject: [PATCH 6/7] Release build 36 --- CHANGELOG.md | 12 ++++++++++++ Dockerfile | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0df6b6f..ab8b621 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ This Docker image contains more than one software (Nagios, Nagios plugins, NRPE, Apache HTTPD, etc.) with different versions. Hence we decided to name the releases with the naming `Build - ` which will have an incremental unsigned integer. In this document we will describe the contents of every image in every build. +## Build 36 (2026-06-12) + +* Nagios core: v4.5.13 +* Nagios plugins: v2.5.0 +* NRPE: 4.1.3 +* Alpine: + * 3.23.4: `amd64`, `i386`, `arm64`,`arm/v6`, `arm/v7` + +### Features + +* Upgrade to Nagios Core `4.5.13`. ([#102](https://github.com/manios/docker-nagios/issues/102)) + ## Build 35 (2026-04-03) * Nagios core: v4.5.12 diff --git a/Dockerfile b/Dockerfile index cebccc4..48fe474 100644 --- a/Dockerfile +++ b/Dockerfile @@ -190,7 +190,7 @@ LABEL name="Nagios" \ nrpeVersion=$NRPE_VERSION \ homepage="https://www.nagios.com/" \ maintainer="Christos Manios " \ - build="36-snapshot" \ + build="36" \ org.opencontainers.image.title="Nagios" \ org.opencontainers.image.description="Nagios, the Industry Standard In IT Infrastructure Monitoring" \ org.opencontainers.image.vendor="Nagios" \ @@ -199,7 +199,7 @@ LABEL name="Nagios" \ org.opencontainers.image.url="https://hub.docker.com/r/manios/nagios" \ org.opencontainers.image.source="https://github.com/manios/docker-nagios" \ org.opencontainers.image.documentation="https://github.com/manios/docker-nagios/blob/master/README.md" \ - org.opencontainers.image.version="36-snapshot" + org.opencontainers.image.version="36" RUN mkdir -p ${NAGIOS_HOME} && \ mkdir -p /orig/apache2 From f2a266a0b854dc161dd5b3e847723f4cf00f2188 Mon Sep 17 00:00:00 2001 From: Christos Manios Date: Fri, 12 Jun 2026 12:07:04 +0300 Subject: [PATCH 7/7] Update readme for Nagios version 4.5.13 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e01769..aa8295a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Build Status: ## Supported tags and respective `Dockerfile` links -* `4.5.12`, `4.5`, `latest` [(4.5.12/Dockerfile)](https://github.com/manios/docker-nagios/blob/master/Dockerfile) +* `4.5.13`, `4.5`, `latest` [(4.5.13/Dockerfile)](https://github.com/manios/docker-nagios/blob/master/Dockerfile) For more information about the image versions you may refer to the [CHANGELOG](https://github.com/manios/docker-nagios/blob/master/CHANGELOG.md)