/ntopng-docker

Docker for running ntopng (https://github.com/ntop/ntopng)

Primary LanguageDockerfileGNU General Public License v3.0GPL-3.0

ntopng-docker

Docker Cloud Automated build Docker Cloud Build Status

Docker for running ntopng

Build

docker build -t ntopng .

Run

After building from source

docker run --net=host -t -p 3000:3000 ntopng

From docker hub...

docker run --net=host -t -p 3000:3000 junquera/ntopng

Custom configuration

For adding aditional configuration there are two ways. First, by line arguments:

docker run --net=host -t -p 3000:3000 -e CONFIG=/ntop/ntopng.conf -v ./ntopng.conf:/ntop/ntopng.conf:ro junquera/ntopng

The other is through docker-compose.yml file.