1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/ntopng/Dockerfile

27 lines
592 B
Docker
Raw Normal View History

2019-05-25 13:47:03 +02:00
#
# Dockerfile for ntopng
#
FROM ubuntu:18.04
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apt update \
&& apt install -y wget lsb-release gnupg libjson-c3 \
&& wget -q http://apt-stable.ntop.org/18.04/all/apt-ntop-stable.deb \
&& dpkg -i apt-ntop-stable.deb \
&& apt update \
&& apt install -y ntopng \
&& rm -rf /var/lib/apt/lists/*
VOLUME /var/lib/ntopng
EXPOSE 3000 5556
CMD ntopng --http-port 0.0.0.0:3000 \
--interface tcp://0.0.0.0:5556c \
2019-05-25 13:59:50 +02:00
--data-dir /var/lib/ntopng \
2019-05-25 13:47:03 +02:00
--redis redis \
2019-05-25 13:59:50 +02:00
--community