Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 897 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 897 Bytes

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.