1
0
Fork 0
mirror of https://github.com/librenms/docker.git synced 2026-07-28 20:40:10 +00:00

Upgrade to LibreNMS 1.44

Add busybox-extras and bind-tools packages
This commit is contained in:
CrazyMax 2018-10-17 14:59:20 +02:00
parent d126d5bbfa
commit d2f94c7368
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
3 changed files with 9 additions and 2 deletions

View file

@ -5,7 +5,7 @@ services:
env:
global:
- VERSION=1.43
- VERSION=1.44
- GITHUB_REPO=crazy-max/docker-librenms
- DOCKER_USERNAME=crazymax
- DOCKER_REPONAME=librenms

View file

@ -1,5 +1,10 @@
# Changelog
## 1.44-RC1 (2018/10/17)
* Upgrade to LibreNMS 1.44
* Add `busybox-extras` and `bind-tools` packages
## 1.43-RC5 (2018/09/29)
* Ability to add custom Monitoring plugins through `/data/monitoring-plugins`

View file

@ -16,8 +16,10 @@ LABEL maintainer="CrazyMax" \
org.label-schema.schema-version="1.0"
RUN apk --update --no-cache add \
busybox-extras \
acl \
bash \
bind-tools \
binutils \
ca-certificates \
coreutils \
@ -76,7 +78,7 @@ RUN apk --update --no-cache add \
&& setcap cap_net_raw+ep /usr/bin/nmap \
&& setcap cap_net_raw+ep /usr/sbin/fping
ENV LIBRENMS_VERSION="1.43" \
ENV LIBRENMS_VERSION="1.44" \
LIBRENMS_PATH="/opt/librenms" \
DATA_PATH="/data" \
CRONTAB_PATH="/var/spool/cron/crontabs"