From 6fdea112c7e0dff8eec5f16d09b628f53a6a1b98 Mon Sep 17 00:00:00 2001 From: Jonathan Senecal Date: Thu, 13 Sep 2018 10:51:18 -0400 Subject: [PATCH] Adding python-memcached module required for distributed poller setup See [the docs](https://docs.librenms.org/#Extensions/Distributed-Poller/#distributed-poller) --- Dockerfile | 57 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 51 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0b72548..4c4ef0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,12 +16,57 @@ LABEL maintainer="CrazyMax" \ org.label-schema.schema-version="1.0" RUN apk --update --no-cache add \ - bash binutils ca-certificates coreutils curl fping git graphviz imagemagick mtr \ - mysql-client net-snmp net-snmp-tools nginx nmap openssl python2 py-mysqldb rrdtool runit \ - shadow supervisor syslog-ng tzdata util-linux whois \ - php7 php7-cli php7-ctype php7-curl php7-fpm php7-gd php7-json php7-mcrypt php7-memcached php7-mbstring php7-mysqli \ - php7-opcache php7-openssl php7-pdo php7-pdo_mysql php7-phar php7-posix php7-session php7-simplexml php7-snmp \ - php7-tokenizer php7-xml php7-zip \ + bash \ + binutils \ + ca-certificates \ + coreutils \ + curl \ + fping \ + git \ + graphviz \ + imagemagick \ + mtr \ + mysql-client \ + net-snmp \ + net-snmp-tools \ + nginx \ + nmap \ + openssl \ + php7 \ + php7-cli \ + php7-ctype \ + php7-curl \ + php7-fpm \ + php7-gd \ + php7-json \ + php7-mbstring \ + php7-mcrypt \ + php7-memcached \ + php7-mysqli \ + php7-opcache \ + php7-openssl \ + php7-pdo \ + php7-pdo_mysql \ + php7-phar \ + php7-posix \ + php7-session \ + php7-simplexml \ + php7-snmp \ + php7-tokenizer \ + php7-xml \ + php7-zip \ + py-mysqldb \ + py2-pip \ + python2 \ + rrdtool \ + runit \ + shadow \ + supervisor \ + syslog-ng \ + tzdata \ + util-linux \ + whois \ + && pip install python-memcached \ && sed -i -e "s/;date\.timezone.*/date\.timezone = UTC/" /etc/php7/php.ini \ && rm -rf /var/cache/apk/* /var/www/* /tmp/*