Skip to content

junquera/ntopng-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.